ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 6a9b12b was 432ce7a, checked in by Aaron Moss <a3moss@…>, 6 years ago |
Port CandidateFinder::postvisit for UntypedExpr, stub dependencies
|
-
Property mode
set to
100644
|
File size:
802 bytes
|
Rev | Line | |
---|
[432ce7a] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // ExplodedArg.cpp --
|
---|
| 8 | //
|
---|
| 9 | // Author : Aaron B. Moss
|
---|
| 10 | // Created On : Tue Jun 11 16:18:00 2019
|
---|
| 11 | // Last Modified By : Aaron B. Moss
|
---|
| 12 | // Last Modified On : Tue Jun 11 16:18:00 2019
|
---|
| 13 | // Update Count : 1
|
---|
| 14 | //
|
---|
| 15 |
|
---|
| 16 | #include "ExplodedArg.hpp"
|
---|
| 17 |
|
---|
| 18 | #include "Tuples/Explode.h" // for Tuples::explode
|
---|
| 19 |
|
---|
| 20 | namespace ResolvExpr {
|
---|
| 21 |
|
---|
| 22 | ExplodedArg::ExplodedArg( const Candidate & arg, const ast::SymbolTable & symtab )
|
---|
| 23 | : env( arg.env ), cost( arg.cost ), exprs() { Tuples::explode( arg, symtab, *this ); }
|
---|
| 24 |
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | // Local Variables: //
|
---|
| 28 | // tab-width: 4 //
|
---|
| 29 | // mode: c++ //
|
---|
| 30 | // compile-command: "make install" //
|
---|
| 31 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.