Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.impl.h

    rf6e3e34 ra8a2b0a  
    685685
    686686//--------------------------------------------------------------------------
    687 // StaticAssertDecl
    688 template< typename pass_type >
    689 void PassVisitor< pass_type >::visit( StaticAssertDecl * node ) {
    690         VISIT_START( node );
    691 
    692         maybeAccept_impl( node->condition, *this );
    693         maybeAccept_impl( node->message  , *this );
    694 
    695         VISIT_END( node );
    696 }
    697 
    698 template< typename pass_type >
    699 StaticAssertDecl * PassVisitor< pass_type >::mutate( StaticAssertDecl * node ) {
    700         MUTATE_START( node );
    701 
    702         maybeMutate_impl( node->condition, *this );
    703         maybeMutate_impl( node->message  , *this );
    704 
    705         MUTATE_END( StaticAssertDecl, node );
    706 }
    707 
    708 //--------------------------------------------------------------------------
    709687// CompoundStmt
    710688template< typename pass_type >
     
    15121490        indexerScopedAccept( node->result, *this );
    15131491        maybeAccept_impl   ( node->type  , *this );
     1492        maybeAccept_impl   ( node->member, *this );
    15141493
    15151494        VISIT_END( node );
     
    15231502        indexerScopedMutate( node->result, *this );
    15241503        maybeMutate_impl   ( node->type  , *this );
     1504        maybeMutate_impl   ( node->member, *this );
    15251505
    15261506        MUTATE_END( Expression, node );
Note: See TracChangeset for help on using the changeset viewer.