Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    rc86b08d rfac05b3  
    10661066
    10671067//--------------------------------------------------------------------------
    1068 // WhenClause
    1069 template< typename core_t >
    1070 const ast::WhenClause * ast::Pass< core_t >::visit( const ast::WhenClause * node ) {
    1071         VISIT_START( node );
    1072 
    1073         if ( __visit_children() ) {
    1074                 maybe_accept( node, &WhenClause::target );
    1075                 maybe_accept( node, &WhenClause::stmt );
    1076                 maybe_accept( node, &WhenClause::when_cond );
    1077         }
    1078 
    1079         VISIT_END( WhenClause, node );
    1080 }
    1081 
    1082 //--------------------------------------------------------------------------
    10831068// WaitForStmt
    10841069template< typename core_t >
     
    11051090
    11061091        if ( __visit_children() ) {
    1107                 maybe_accept( node, &WaitForClause::target );
     1092                maybe_accept( node, &WaitForClause::target_func );
    11081093                maybe_accept( node, &WaitForClause::target_args );
    11091094                maybe_accept( node, &WaitForClause::stmt );
    1110                 maybe_accept( node, &WaitForClause::when_cond );
     1095                maybe_accept( node, &WaitForClause::cond );
    11111096        }
    11121097
    11131098        VISIT_END( WaitForClause, node );
    1114 }
    1115 
    1116 //--------------------------------------------------------------------------
    1117 // WaitUntilStmt
    1118 template< typename core_t >
    1119 const ast::Stmt * ast::Pass< core_t >::visit( const ast::WaitUntilStmt * node ) {
    1120         VISIT_START( node );
    1121 
    1122         if ( __visit_children() ) {
    1123                 maybe_accept( node, &WaitUntilStmt::clauses );
    1124                 maybe_accept( node, &WaitUntilStmt::timeout_time );
    1125                 maybe_accept( node, &WaitUntilStmt::timeout_stmt );
    1126                 maybe_accept( node, &WaitUntilStmt::timeout_cond );
    1127                 maybe_accept( node, &WaitUntilStmt::else_stmt );
    1128                 maybe_accept( node, &WaitUntilStmt::else_cond );
    1129         }
    1130 
    1131         VISIT_END( Stmt, node );
    11321099}
    11331100
     
    20752042        if ( __visit_children() ) {
    20762043                maybe_accept( node, &TupleType::types );
    2077                 maybe_accept( node, &TupleType::members );
    20782044        }
    20792045
Note: See TracChangeset for help on using the changeset viewer.