Changes in src/Common/PassVisitor.impl.h [2f86ddf:c194661]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r2f86ddf rc194661 1778 1778 VISIT_START( node ); 1779 1779 1780 indexerScopedAccept( node->result , *this ); 1781 maybeAccept_impl ( node->callExpr , *this ); 1780 indexerScopedAccept( node->result , *this ); 1781 maybeAccept_impl ( node->callExpr , *this ); 1782 maybeAccept_impl ( node->tempDecls , *this ); 1783 maybeAccept_impl ( node->returnDecls, *this ); 1784 maybeAccept_impl ( node->dtors , *this ); 1782 1785 1783 1786 VISIT_END( node ); … … 1788 1791 MUTATE_START( node ); 1789 1792 1790 indexerScopedMutate( node->env , *this ); 1791 indexerScopedMutate( node->result , *this ); 1792 maybeMutate_impl ( node->callExpr , *this ); 1793 indexerScopedMutate( node->env , *this ); 1794 indexerScopedMutate( node->result , *this ); 1795 maybeMutate_impl ( node->callExpr , *this ); 1796 maybeMutate_impl ( node->tempDecls , *this ); 1797 maybeMutate_impl ( node->returnDecls, *this ); 1798 maybeMutate_impl ( node->dtors , *this ); 1793 1799 1794 1800 MUTATE_END( Expression, node );
Note:
See TracChangeset
for help on using the changeset viewer.