Changes in src/Common/PassVisitor.impl.h [6a45bd78:c6c682cf]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r6a45bd78 rc6c682cf 835 835 { 836 836 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 837 maybeAccept_impl( node->parameters, *this ); 837 838 maybeAccept_impl( node->base , *this ); 838 839 } … … 857 858 { 858 859 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 860 maybeAccept_impl( node->parameters, *this ); 859 861 maybeAccept_impl( node->base , *this ); 860 862 } … … 878 880 { 879 881 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 882 maybeMutate_impl( node->parameters, *this ); 880 883 maybeMutate_impl( node->base , *this ); 881 884 } … … 901 904 { 902 905 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 906 maybeAccept_impl( node->parameters, *this ); 903 907 maybeAccept_impl( node->base , *this ); 904 908 } … … 917 921 { 918 922 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 923 maybeAccept_impl( node->parameters, *this ); 919 924 maybeAccept_impl( node->base , *this ); 920 925 } … … 933 938 { 934 939 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 940 maybeMutate_impl( node->parameters, *this ); 935 941 maybeMutate_impl( node->base , *this ); 936 942 }
Note:
See TracChangeset
for help on using the changeset viewer.