Index: src/Common/PassVisitor.impl.h
===================================================================
--- src/Common/PassVisitor.impl.h	(revision 5cbacf10c007573bb52e9dbace6bc7d304c98b78)
+++ src/Common/PassVisitor.impl.h	(revision 2f86ddf839c92a4a8670497106e33770cf52c2bc)
@@ -1778,9 +1778,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 );
@@ -1791,10 +1788,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 );
