Changes in src/SynTree/Visitor.h [2a4b088:630a82a]
- File:
-
- 1 edited
-
src/SynTree/Visitor.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.h
r2a4b088 r630a82a 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jan 25 21:20:44201613 // Update Count : 512 // Last Modified On : Fri Apr 1 17:26:55 2016 13 // Update Count : 7 14 14 // 15 15 … … 31 31 virtual void visit( UnionDecl *aggregateDecl ); 32 32 virtual void visit( EnumDecl *aggregateDecl ); 33 virtual void visit( ContextDecl *aggregateDecl );33 virtual void visit( TraitDecl *aggregateDecl ); 34 34 virtual void visit( TypeDecl *typeDecl ); 35 35 virtual void visit( TypedefDecl *typeDecl ); … … 76 76 virtual void visit( AsmExpr *asmExpr ); 77 77 virtual void visit( UntypedValofExpr *valofExpr ); 78 virtual void visit( CompoundLiteralExpr *compLitExpr ); 78 79 79 80 virtual void visit( VoidType *basicType ); … … 85 86 virtual void visit( UnionInstType *aggregateUseType ); 86 87 virtual void visit( EnumInstType *aggregateUseType ); 87 virtual void visit( ContextInstType *aggregateUseType );88 virtual void visit( TraitInstType *aggregateUseType ); 88 89 virtual void visit( TypeInstType *aggregateUseType ); 89 90 virtual void visit( TupleType *tupleType ); 90 91 virtual void visit( TypeofType *typeofType ); 91 92 virtual void visit( AttrType *attrType ); 93 virtual void visit( VarArgsType *varArgsType ); 92 94 93 95 virtual void visit( SingleInit *singleInit );
Note:
See TracChangeset
for help on using the changeset viewer.