- Timestamp:
- Nov 23, 2020, 4:06:59 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 32a8b61
- Parents:
- 7192145
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.h
r7192145 rb2e0df3 21 21 class Declaration; 22 22 namespace ast { 23 classTranslationUnit;23 struct TranslationUnit; 24 24 } 25 25 -
src/Parser/ParseNode.h
r7192145 rb2e0df3 37 37 class Attribute; 38 38 class Declaration; 39 classDeclarationNode;39 struct DeclarationNode; 40 40 class DeclarationWithType; 41 41 class ExpressionNode; 42 42 class Initializer; 43 classStatementNode;43 struct StatementNode; 44 44 45 45 //############################################################################## -
src/ResolvExpr/Resolver.h
r7192145 rb2e0df3 35 35 class StmtExpr; 36 36 class SymbolTable; 37 classTranslationUnit;37 struct TranslationUnit; 38 38 class Type; 39 39 class TypeEnvironment; … … 63 63 ast::ptr< ast::Expr > resolveInVoidContext( 64 64 const ast::Expr * expr, const ast::SymbolTable & symtab, ast::TypeEnvironment & env ); 65 /// Resolve `untyped` to the single expression whose candidate is the best match for the 65 /// Resolve `untyped` to the single expression whose candidate is the best match for the 66 66 /// given type. 67 67 ast::ptr< ast::Expr > findSingleExpression(
Note: See TracChangeset
for help on using the changeset viewer.