@@ -12,13 +12,13 @@ module QL {
1212 string toString ( ) { result = this .getAPrimaryQlClass ( ) }
1313
1414 /** 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 ) }
1616
1717 /** 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 , _) }
1919
2020 /** 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 ) }
2222
2323 /** Gets a field or child node of this node. */
2424 AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1282,13 +1282,13 @@ module Dbscheme {
12821282 string toString ( ) { result = this .getAPrimaryQlClass ( ) }
12831283
12841284 /** 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 ) }
12861286
12871287 /** 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 , _) }
12891289
12901290 /** 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 ) }
12921292
12931293 /** Gets a field or child node of this node. */
12941294 AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1618,13 +1618,13 @@ module Blame {
16181618 string toString ( ) { result = this .getAPrimaryQlClass ( ) }
16191619
16201620 /** 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 ) }
16221622
16231623 /** 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 , _) }
16251625
16261626 /** 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 ) }
16281628
16291629 /** Gets a field or child node of this node. */
16301630 AstNode getAFieldOrChild ( ) { none ( ) }
@@ -1731,13 +1731,13 @@ module JSON {
17311731 string toString ( ) { result = this .getAPrimaryQlClass ( ) }
17321732
17331733 /** 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 ) }
17351735
17361736 /** 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 , _) }
17381738
17391739 /** 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 ) }
17411741
17421742 /** Gets a field or child node of this node. */
17431743 AstNode getAFieldOrChild ( ) { none ( ) }
0 commit comments