Changeset 712348a for src/Common
- Timestamp:
- May 13, 2019, 5:10:04 PM (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:
- 6d51bd7
- Parents:
- 768b3b4f
- Location:
- src/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Common/PassVisitor.h ¶
r768b3b4f r712348a 155 155 virtual void visit( ConstructorInit * ctorInit ) override final; 156 156 157 virtual void visit( Subrange * subrange ) override final;158 159 157 virtual void visit( Constant * constant ) override final; 160 158 … … 257 255 virtual Initializer * mutate( ConstructorInit * ctorInit ) override final; 258 256 259 virtual Subrange * mutate( Subrange * subrange ) override final;260 261 257 virtual Constant * mutate( Constant * constant ) override final; 262 258 -
TabularUnified src/Common/PassVisitor.impl.h ¶
r768b3b4f r712348a 2712 2712 2713 2713 //-------------------------------------------------------------------------- 2714 // Subrange2715 template< typename pass_type >2716 void PassVisitor< pass_type >::visit( Subrange * node ) {2717 VISIT_START( node );2718 2719 VISIT_END( node );2720 }2721 2722 template< typename pass_type >2723 Subrange * PassVisitor< pass_type >::mutate( Subrange * node ) {2724 MUTATE_START( node );2725 2726 MUTATE_END( Subrange, node );2727 }2728 2729 //--------------------------------------------------------------------------2730 2714 // Attribute 2731 2715 template< typename pass_type >
Note: See TracChangeset
for help on using the changeset viewer.