Changeset 6a45bd78 for src/Common
- Timestamp:
- Dec 10, 2020, 3:59:41 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 3e3f236
- Parents:
- d4e338f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
rd4e338f r6a45bd78 835 835 { 836 836 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 837 maybeAccept_impl( node->parameters, *this );838 837 maybeAccept_impl( node->base , *this ); 839 838 } … … 858 857 { 859 858 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 860 maybeAccept_impl( node->parameters, *this );861 859 maybeAccept_impl( node->base , *this ); 862 860 } … … 880 878 { 881 879 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 882 maybeMutate_impl( node->parameters, *this );883 880 maybeMutate_impl( node->base , *this ); 884 881 } … … 904 901 { 905 902 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 906 maybeAccept_impl( node->parameters, *this );907 903 maybeAccept_impl( node->base , *this ); 908 904 } … … 921 917 { 922 918 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 923 maybeAccept_impl( node->parameters, *this );924 919 maybeAccept_impl( node->base , *this ); 925 920 } … … 938 933 { 939 934 auto guard = makeFuncGuard( [this]() { indexerScopeEnter(); }, [this]() { indexerScopeLeave(); } ); 940 maybeMutate_impl( node->parameters, *this );941 935 maybeMutate_impl( node->base , *this ); 942 936 }
Note:
See TracChangeset
for help on using the changeset viewer.