Changeset b067d9b for src/SynTree/Mutator.h
- Timestamp:
- Oct 29, 2019, 4:01:24 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 773db65, 9421f3d8
- Parents:
- 7951100 (diff), 8364209 (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/SynTree/Mutator.h
r7951100 rb067d9b 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Mon Jul 24 16:31:00 201713 // Update Count : 1 611 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Jul 25 22:37:46 2019 13 // Update Count : 17 14 14 // 15 15 #pragma once … … 52 52 virtual Statement * mutate( FinallyStmt * catchStmt ) = 0; 53 53 virtual Statement * mutate( WaitForStmt * waitforStmt ) = 0; 54 virtual Statement* mutate( WithStmt * withStmt ) = 0;54 virtual Declaration * mutate( WithStmt * withStmt ) = 0; 55 55 virtual NullStmt * mutate( NullStmt * nullStmt ) = 0; 56 56 virtual Statement * mutate( DeclStmt * declStmt ) = 0; … … 74 74 virtual Expression * mutate( OffsetofExpr * offsetofExpr ) = 0; 75 75 virtual Expression * mutate( OffsetPackExpr * offsetPackExpr ) = 0; 76 virtual Expression * mutate( AttrExpr * attrExpr ) = 0;77 76 virtual Expression * mutate( LogicalExpr * logicalExpr ) = 0; 78 77 virtual Expression * mutate( ConditionalExpr * conditionalExpr ) = 0; … … 93 92 virtual Expression * mutate( InitExpr * initExpr ) = 0; 94 93 virtual Expression * mutate( DeletedExpr * delExpr ) = 0; 94 virtual Expression * mutate( DefaultArgExpr * argExpr ) = 0; 95 95 virtual Expression * mutate( GenericExpr * genExpr ) = 0; 96 96 … … 100 100 virtual Type * mutate( ArrayType * arrayType ) = 0; 101 101 virtual Type * mutate( ReferenceType * refType ) = 0; 102 virtual Type * mutate( QualifiedType * qualType ) = 0; 102 103 virtual Type * mutate( FunctionType * functionType ) = 0; 103 104 virtual Type * mutate( StructInstType * aggregateUseType ) = 0; … … 112 113 virtual Type * mutate( ZeroType * zeroType ) = 0; 113 114 virtual Type * mutate( OneType * oneType ) = 0; 115 virtual Type * mutate( GlobalScopeType * globalType ) = 0; 114 116 115 117 virtual Designation * mutate( Designation * designation ) = 0 ; … … 117 119 virtual Initializer * mutate( ListInit * listInit ) = 0 ; 118 120 virtual Initializer * mutate( ConstructorInit * ctorInit ) = 0 ; 119 120 virtual Subrange * mutate( Subrange * subrange ) = 0;121 121 122 122 virtual Constant * mutate( Constant * constant ) = 0;
Note:
See TracChangeset
for help on using the changeset viewer.