@@ -899,24 +899,22 @@ module Swift {
899899 final override string getAPrimaryQlClass ( ) { result = "EqualityConstraint" }
900900
901901 /** Gets the node corresponding to the field `constrained_type`. */
902- final AstNode getConstrainedType ( int i ) {
903- swift_equality_constraint_constrained_type ( this , i , result )
904- }
902+ final AstNode getConstrainedType ( ) { swift_equality_constraint_def ( this , result , _) }
905903
906904 /** Gets the node corresponding to the field `must_equal`. */
907905 final AstNode getMustEqual ( int i ) { swift_equality_constraint_must_equal ( this , i , result ) }
908906
909907 /** Gets the node corresponding to the field `name`. */
910- final UnannotatedType getName ( ) { swift_equality_constraint_def ( this , result ) }
908+ final UnannotatedType getName ( ) { swift_equality_constraint_def ( this , _ , result ) }
911909
912910 /** Gets the `i`th child of this node. */
913911 final Attribute getChild ( int i ) { swift_equality_constraint_child ( this , i , result ) }
914912
915913 /** Gets a field or child node of this node. */
916914 final override AstNode getAFieldOrChild ( ) {
917- swift_equality_constraint_constrained_type ( this , _ , result ) or
915+ swift_equality_constraint_def ( this , result , _ ) or
918916 swift_equality_constraint_must_equal ( this , _, result ) or
919- swift_equality_constraint_def ( this , result ) or
917+ swift_equality_constraint_def ( this , _ , result ) or
920918 swift_equality_constraint_child ( this , _, result )
921919 }
922920 }
@@ -1229,9 +1227,7 @@ module Swift {
12291227 final override string getAPrimaryQlClass ( ) { result = "InheritanceConstraint" }
12301228
12311229 /** Gets the node corresponding to the field `constrained_type`. */
1232- final AstNode getConstrainedType ( int i ) {
1233- swift_inheritance_constraint_constrained_type ( this , i , result )
1234- }
1230+ final AstNode getConstrainedType ( ) { swift_inheritance_constraint_def ( this , result ) }
12351231
12361232 /** Gets the node corresponding to the field `inherits_from`. */
12371233 final AstNode getInheritsFrom ( int i ) {
@@ -1246,7 +1242,7 @@ module Swift {
12461242
12471243 /** Gets a field or child node of this node. */
12481244 final override AstNode getAFieldOrChild ( ) {
1249- swift_inheritance_constraint_constrained_type ( this , _ , result ) or
1245+ swift_inheritance_constraint_def ( this , result ) or
12501246 swift_inheritance_constraint_inherits_from ( this , _, result ) or
12511247 swift_inheritance_constraint_name ( this , result ) or
12521248 swift_inheritance_constraint_child ( this , _, result )
@@ -1661,6 +1657,20 @@ module Swift {
16611657 final override AstNode getAFieldOrChild ( ) { swift_navigation_suffix_def ( this , result ) }
16621658 }
16631659
1660+ /** A class representing `nested_type_identifier` nodes. */
1661+ class NestedTypeIdentifier extends @swift_nested_type_identifier, AstNode {
1662+ /** Gets the name of the primary QL class for this element. */
1663+ final override string getAPrimaryQlClass ( ) { result = "NestedTypeIdentifier" }
1664+
1665+ /** Gets the `i`th child of this node. */
1666+ final AstNode getChild ( int i ) { swift_nested_type_identifier_child ( this , i , result ) }
1667+
1668+ /** Gets a field or child node of this node. */
1669+ final override AstNode getAFieldOrChild ( ) {
1670+ swift_nested_type_identifier_child ( this , _, result )
1671+ }
1672+ }
1673+
16641674 /** A class representing `nil_coalescing_expression` nodes. */
16651675 class NilCoalescingExpression extends @swift_nil_coalescing_expression, AstNode {
16661676 /** Gets the name of the primary QL class for this element. */
0 commit comments