Changeset 342146e1
- Timestamp:
- May 23, 2019, 11:29:00 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- e4b6cf78
- Parents:
- 3ca912a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r3ca912a r342146e1 23 23 assert( __return ); \ 24 24 return __return; 25 26 27 #define VISIT_BODY( node ) \28 VISIT_START( node ); \29 if( children_guard ) { \30 Visitor::visit( node ); \31 } \32 VISIT_END( node ); \33 34 35 #define MUTATE_BODY( type, node ) \36 MUTATE_START( node ); \37 if( children_guard ) { \38 Mutator::mutate( node ); \39 } \40 MUTATE_END( type, node ); \41 42 25 43 26 … … 2762 2745 MUTATE_END( TypeSubstitution, node ); 2763 2746 } 2747 2748 #undef VISIT_START 2749 #undef VISIT_END 2750 2751 #undef MUTATE_START 2752 #undef MUTATE_END
Note: See TracChangeset
for help on using the changeset viewer.