@@ -137,13 +137,13 @@ module QL {
137137 /** Gets the node corresponding to the field `name`. */
138138 final LiteralId getName ( ) { ql_arityless_predicate_expr_def ( this , result ) }
139139
140- /** Gets the child of this node . */
141- final ModuleExpr getChild ( ) { ql_arityless_predicate_expr_child ( this , result ) }
140+ /** Gets the node corresponding to the field `qualifier` . */
141+ final ModuleExpr getQualifier ( ) { ql_arityless_predicate_expr_qualifier ( this , result ) }
142142
143143 /** Gets a field or child node of this node. */
144144 final override AstNode getAFieldOrChild ( ) {
145145 ql_arityless_predicate_expr_def ( this , result ) or
146- ql_arityless_predicate_expr_child ( this , result )
146+ ql_arityless_predicate_expr_qualifier ( this , result )
147147 }
148148 }
149149
@@ -1320,20 +1320,15 @@ module QL {
13201320 /** Gets the name of the primary QL class for this element. */
13211321 final override string getAPrimaryQlClass ( ) { result = "SignatureExpr" }
13221322
1323- /** Gets the node corresponding to the field `arity `. */
1324- final Integer getArity ( ) { ql_signature_expr_arity ( this , result ) }
1323+ /** Gets the node corresponding to the field `predicate `. */
1324+ final PredicateExpr getPredicate ( ) { ql_signature_expr_predicate ( this , result ) }
13251325
1326- /** Gets the node corresponding to the field `name`. */
1327- final SimpleId getName ( ) { ql_signature_expr_def ( this , result ) }
1328-
1329- /** Gets the node corresponding to the field `qualifier`. */
1330- final ModuleExpr getQualifier ( ) { ql_signature_expr_qualifier ( this , result ) }
1326+ /** Gets the node corresponding to the field `type_expr`. */
1327+ final TypeExpr getTypeExpr ( ) { ql_signature_expr_type_expr ( this , result ) }
13311328
13321329 /** Gets a field or child node of this node. */
13331330 final override AstNode getAFieldOrChild ( ) {
1334- ql_signature_expr_arity ( this , result ) or
1335- ql_signature_expr_def ( this , result ) or
1336- ql_signature_expr_qualifier ( this , result )
1331+ ql_signature_expr_predicate ( this , result ) or ql_signature_expr_type_expr ( this , result )
13371332 }
13381333 }
13391334
@@ -1417,12 +1412,17 @@ module QL {
14171412 /** Gets the node corresponding to the field `name`. */
14181413 final ClassName getName ( ) { ql_type_expr_name ( this , result ) }
14191414
1415+ /** Gets the node corresponding to the field `qualifier`. */
1416+ final ModuleExpr getQualifier ( ) { ql_type_expr_qualifier ( this , result ) }
1417+
14201418 /** Gets the child of this node. */
14211419 final AstNode getChild ( ) { ql_type_expr_child ( this , result ) }
14221420
14231421 /** Gets a field or child node of this node. */
14241422 final override AstNode getAFieldOrChild ( ) {
1425- ql_type_expr_name ( this , result ) or ql_type_expr_child ( this , result )
1423+ ql_type_expr_name ( this , result ) or
1424+ ql_type_expr_qualifier ( this , result ) or
1425+ ql_type_expr_child ( this , result )
14261426 }
14271427 }
14281428
0 commit comments