Index: src/Common/PassVisitor.impl.h
===================================================================
--- src/Common/PassVisitor.impl.h	(revision 77bfc801f3cb89b3b5dcb4ce8808bf2332aeef24)
+++ src/Common/PassVisitor.impl.h	(revision 933f32f2ae9703d54327e4727aceb5746433092d)
@@ -1806,9 +1806,6 @@
 	VISIT_START( node );
 
-	indexerScopedAccept( node->result     , *this );
-	maybeAccept_impl   ( node->callExpr   , *this );
-	maybeAccept_impl   ( node->tempDecls  , *this );
-	maybeAccept_impl   ( node->returnDecls, *this );
-	maybeAccept_impl   ( node->dtors      , *this );
+	indexerScopedAccept( node->result    , *this );
+	maybeAccept_impl   ( node->callExpr  , *this );
 
 	VISIT_END( node );
@@ -1819,10 +1816,7 @@
 	MUTATE_START( node );
 
-	indexerScopedMutate( node->env        , *this );
-	indexerScopedMutate( node->result     , *this );
-	maybeMutate_impl   ( node->callExpr   , *this );
-	maybeMutate_impl   ( node->tempDecls  , *this );
-	maybeMutate_impl   ( node->returnDecls, *this );
-	maybeMutate_impl   ( node->dtors      , *this );
+	indexerScopedMutate( node->env       , *this );
+	indexerScopedMutate( node->result    , *this );
+	maybeMutate_impl   ( node->callExpr  , *this );
 
 	MUTATE_END( Expression, node );
