Changes in src/AST/Pass.impl.hpp [525f7ad:85855b0]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r525f7ad r85855b0 802 802 maybe_accept_top( node, &ForStmt::cond ); 803 803 maybe_accept_top( node, &ForStmt::inc ); 804 maybe_accept_top( node, &ForStmt::range_over );805 804 maybe_accept_as_compound( node, &ForStmt::body ); 806 805 } … … 1324 1323 } 1325 1324 1326 VISIT_END( Expr, node );1327 }1328 1329 //--------------------------------------------------------------------------1330 // CountExpr1331 template< typename core_t >1332 const ast::Expr * ast::Pass< core_t >::visit( const ast::CountExpr * node ) {1333 VISIT_START( node );1334 if ( __visit_children() ) {1335 {1336 guard_symtab guard { *this };1337 maybe_accept( node, &CountExpr::result );1338 }1339 maybe_accept( node, &CountExpr::type );1340 }1341 1325 VISIT_END( Expr, node ); 1342 1326 }
Note:
See TracChangeset
for help on using the changeset viewer.