@@ -12,13 +12,13 @@ module QL {
12
12
string toString ( ) { result = this .getAPrimaryQlClass ( ) }
13
13
14
14
/** Gets the location of this element. */
15
- final L:: Location getLocation ( ) { ql_ast_node_info ( this , _ , _ , result ) }
15
+ final L:: Location getLocation ( ) { ql_ast_node_location ( this , result ) }
16
16
17
17
/** Gets the parent of this element. */
18
- final AstNode getParent ( ) { ql_ast_node_info ( this , result , _ , _) }
18
+ final AstNode getParent ( ) { ql_ast_node_parent ( this , result , _) }
19
19
20
20
/** Gets the index of this node among the children of its parent. */
21
- final int getParentIndex ( ) { ql_ast_node_info ( this , _, result , _ ) }
21
+ final int getParentIndex ( ) { ql_ast_node_parent ( this , _, result ) }
22
22
23
23
/** Gets a field or child node of this node. */
24
24
AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1282,13 +1282,13 @@ module Dbscheme {
1282
1282
string toString ( ) { result = this .getAPrimaryQlClass ( ) }
1283
1283
1284
1284
/** Gets the location of this element. */
1285
- final L:: Location getLocation ( ) { dbscheme_ast_node_info ( this , _ , _ , result ) }
1285
+ final L:: Location getLocation ( ) { dbscheme_ast_node_location ( this , result ) }
1286
1286
1287
1287
/** Gets the parent of this element. */
1288
- final AstNode getParent ( ) { dbscheme_ast_node_info ( this , result , _ , _) }
1288
+ final AstNode getParent ( ) { dbscheme_ast_node_parent ( this , result , _) }
1289
1289
1290
1290
/** Gets the index of this node among the children of its parent. */
1291
- final int getParentIndex ( ) { dbscheme_ast_node_info ( this , _, result , _ ) }
1291
+ final int getParentIndex ( ) { dbscheme_ast_node_parent ( this , _, result ) }
1292
1292
1293
1293
/** Gets a field or child node of this node. */
1294
1294
AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1618,13 +1618,13 @@ module Blame {
1618
1618
string toString ( ) { result = this .getAPrimaryQlClass ( ) }
1619
1619
1620
1620
/** Gets the location of this element. */
1621
- final L:: Location getLocation ( ) { blame_ast_node_info ( this , _ , _ , result ) }
1621
+ final L:: Location getLocation ( ) { blame_ast_node_location ( this , result ) }
1622
1622
1623
1623
/** Gets the parent of this element. */
1624
- final AstNode getParent ( ) { blame_ast_node_info ( this , result , _ , _) }
1624
+ final AstNode getParent ( ) { blame_ast_node_parent ( this , result , _) }
1625
1625
1626
1626
/** Gets the index of this node among the children of its parent. */
1627
- final int getParentIndex ( ) { blame_ast_node_info ( this , _, result , _ ) }
1627
+ final int getParentIndex ( ) { blame_ast_node_parent ( this , _, result ) }
1628
1628
1629
1629
/** Gets a field or child node of this node. */
1630
1630
AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1731,13 +1731,13 @@ module JSON {
1731
1731
string toString ( ) { result = this .getAPrimaryQlClass ( ) }
1732
1732
1733
1733
/** Gets the location of this element. */
1734
- final L:: Location getLocation ( ) { json_ast_node_info ( this , _ , _ , result ) }
1734
+ final L:: Location getLocation ( ) { json_ast_node_location ( this , result ) }
1735
1735
1736
1736
/** Gets the parent of this element. */
1737
- final AstNode getParent ( ) { json_ast_node_info ( this , result , _ , _) }
1737
+ final AstNode getParent ( ) { json_ast_node_parent ( this , result , _) }
1738
1738
1739
1739
/** Gets the index of this node among the children of its parent. */
1740
- final int getParentIndex ( ) { json_ast_node_info ( this , _, result , _ ) }
1740
+ final int getParentIndex ( ) { json_ast_node_parent ( this , _, result ) }
1741
1741
1742
1742
/** Gets a field or child node of this node. */
1743
1743
AstNode getAFieldOrChild ( ) { none ( ) }
0 commit comments