Changes in src/AST/Pass.impl.hpp [85855b0:525f7ad]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r85855b0 r525f7ad 802 802 maybe_accept_top( node, &ForStmt::cond ); 803 803 maybe_accept_top( node, &ForStmt::inc ); 804 maybe_accept_top( node, &ForStmt::range_over ); 804 805 maybe_accept_as_compound( node, &ForStmt::body ); 805 806 } … … 1323 1324 } 1324 1325 1326 VISIT_END( Expr, node ); 1327 } 1328 1329 //-------------------------------------------------------------------------- 1330 // CountExpr 1331 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 } 1325 1341 VISIT_END( Expr, node ); 1326 1342 }
Note:
See TracChangeset
for help on using the changeset viewer.