Changeset b03eed6 for src/Common/PassVisitor.impl.h
- Timestamp:
- Apr 19, 2018, 5:54:41 PM (5 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, with_gc
- Children:
- 8633f060
- Parents:
- e16294d (diff), da9d79b (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.impl.h
re16294d rb03eed6 1259 1259 1260 1260 //-------------------------------------------------------------------------- 1261 // KeywordCastExpr 1262 template< typename pass_type > 1263 void PassVisitor< pass_type >::visit( KeywordCastExpr * node ) { 1264 VISIT_START( node ); 1265 1266 indexerScopedAccept( node->result, *this ); 1267 maybeAccept_impl ( node->arg , *this ); 1268 1269 VISIT_END( node ); 1270 } 1271 1272 template< typename pass_type > 1273 Expression * PassVisitor< pass_type >::mutate( KeywordCastExpr * node ) { 1274 MUTATE_START( node ); 1275 1276 indexerScopedMutate( node->env , *this ); 1277 indexerScopedMutate( node->result, *this ); 1278 maybeMutate_impl ( node->arg , *this ); 1279 1280 MUTATE_END( Expression, node ); 1281 } 1282 1283 //-------------------------------------------------------------------------- 1261 1284 // VirtualCastExpr 1262 1285 template< typename pass_type >
Note: See TracChangeset
for help on using the changeset viewer.