Changeset 7416d46a for src/Common/PassVisitor.h
- Timestamp:
- Jan 30, 2018, 3:54:32 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 633a642
- Parents:
- f792cb8 (diff), 42be3c3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
rf792cb8 r7416d46a 19 19 #include "SynTree/Expression.h" 20 20 #include "SynTree/Constant.h" 21 #include "SynTree/TypeSubstitution.h" 21 22 class TypeSubstitution; 22 23 23 24 #include "PassVisitor.proto.h" … … 118 119 virtual void visit( StmtExpr * stmtExpr ) override final; 119 120 virtual void visit( UniqueExpr * uniqueExpr ) override final; 121 virtual void visit( UntypedInitExpr * initExpr ) override final; 122 virtual void visit( InitExpr * initExpr ) override final; 120 123 121 124 virtual void visit( VoidType * basicType ) override final; … … 210 213 virtual Expression * mutate( StmtExpr * stmtExpr ) override final; 211 214 virtual Expression * mutate( UniqueExpr * uniqueExpr ) override final; 215 virtual Expression * mutate( UntypedInitExpr * initExpr ) override final; 216 virtual Expression * mutate( InitExpr * initExpr ) override final; 212 217 213 218 virtual Type * mutate( VoidType * basicType ) override final; … … 403 408 }; 404 409 410 #include "SynTree/TypeSubstitution.h" 405 411 #include "PassVisitor.impl.h"
Note:
See TracChangeset
for help on using the changeset viewer.