Ignore:
File:
1 edited

Legend:

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

    r6a45bd78 rc6c682cf  
    835835        {
    836836                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     837                maybeAccept_impl( node->parameters, *this );
    837838                maybeAccept_impl( node->base      , *this );
    838839        }
     
    857858        {
    858859                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     860                maybeAccept_impl( node->parameters, *this );
    859861                maybeAccept_impl( node->base      , *this );
    860862        }
     
    878880        {
    879881                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     882                maybeMutate_impl( node->parameters, *this );
    880883                maybeMutate_impl( node->base      , *this );
    881884        }
     
    901904        {
    902905                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     906                maybeAccept_impl( node->parameters, *this );
    903907                maybeAccept_impl( node->base      , *this );
    904908        }
     
    917921        {
    918922                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     923                maybeAccept_impl( node->parameters, *this );
    919924                maybeAccept_impl( node->base      , *this );
    920925        }
     
    933938        {
    934939                auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } );
     940                maybeMutate_impl( node->parameters, *this );
    935941                maybeMutate_impl( node->base      , *this );
    936942        }
Note: See TracChangeset for help on using the changeset viewer.