@@ -349,9 +349,6 @@ module Unified {
349349 /** Gets the node corresponding to the field `body`. */
350350 final Block getBody ( ) { unified_catch_clause_def ( this , result ) }
351351
352- /** Gets the node corresponding to the field `guard`. */
353- final Expr getGuard ( ) { unified_catch_clause_guard ( this , result ) }
354-
355352 /** Gets the node corresponding to the field `modifier`. */
356353 final Modifier getModifier ( int i ) { unified_catch_clause_modifier ( this , i , result ) }
357354
@@ -361,7 +358,6 @@ module Unified {
361358 /** Gets a field or child node of this node. */
362359 final override AstNode getAFieldOrChild ( ) {
363360 unified_catch_clause_def ( this , result ) or
364- unified_catch_clause_guard ( this , result ) or
365361 unified_catch_clause_modifier ( this , _, result ) or
366362 unified_catch_clause_pattern ( this , result )
367363 }
@@ -1147,9 +1143,6 @@ module Unified {
11471143 /** Gets the node corresponding to the field `body`. */
11481144 final Block getBody ( ) { unified_switch_case_def ( this , result ) }
11491145
1150- /** Gets the node corresponding to the field `guard`. */
1151- final Expr getGuard ( ) { unified_switch_case_guard ( this , result ) }
1152-
11531146 /** Gets the node corresponding to the field `modifier`. */
11541147 final Modifier getModifier ( int i ) { unified_switch_case_modifier ( this , i , result ) }
11551148
@@ -1159,7 +1152,6 @@ module Unified {
11591152 /** Gets a field or child node of this node. */
11601153 final override AstNode getAFieldOrChild ( ) {
11611154 unified_switch_case_def ( this , result ) or
1162- unified_switch_case_guard ( this , result ) or
11631155 unified_switch_case_modifier ( this , _, result ) or
11641156 unified_switch_case_pattern ( this , result )
11651157 }
@@ -1563,8 +1555,6 @@ module Unified {
15631555 or
15641556 result = node .( CatchClause ) .getBody ( ) and i = - 1 and name = "getBody"
15651557 or
1566- result = node .( CatchClause ) .getGuard ( ) and i = - 1 and name = "getGuard"
1567- or
15681558 result = node .( CatchClause ) .getModifier ( i ) and name = "getModifier"
15691559 or
15701560 result = node .( CatchClause ) .getPattern ( ) and i = - 1 and name = "getPattern"
@@ -1749,8 +1739,6 @@ module Unified {
17491739 or
17501740 result = node .( SwitchCase ) .getBody ( ) and i = - 1 and name = "getBody"
17511741 or
1752- result = node .( SwitchCase ) .getGuard ( ) and i = - 1 and name = "getGuard"
1753- or
17541742 result = node .( SwitchCase ) .getModifier ( i ) and name = "getModifier"
17551743 or
17561744 result = node .( SwitchCase ) .getPattern ( ) and i = - 1 and name = "getPattern"
0 commit comments