@@ -26,7 +26,7 @@ pub fn create_ast_node_class<'a>(ast_node: &'a str, ast_node_parent: &'a str) ->
2626 Some ( String :: from ( "Gets the location of this element." ) ) ,
2727 "getLocation" ,
2828 false ,
29- Some ( ql:: Type :: Normal ( "Location" ) ) ,
29+ Some ( ql:: Type :: Normal ( "L:: Location" ) ) ,
3030 ) ;
3131 let get_a_field_or_child = create_none_predicate (
3232 Some ( String :: from ( "Gets a field or child node of this node." ) ) ,
@@ -136,7 +136,7 @@ pub fn create_token_class<'a>(token_type: &'a str, tokeninfo: &'a str) -> ql::Cl
136136 qldoc : Some ( String :: from ( "Gets the location of this token." ) ) ,
137137 name : "getLocation" ,
138138 overridden : true ,
139- return_type : Some ( ql:: Type :: Normal ( "Location" ) ) ,
139+ return_type : Some ( ql:: Type :: Normal ( "L:: Location" ) ) ,
140140 formal_parameters : vec ! [ ] ,
141141 body : create_get_field_expr_for_column_storage ( "result" , tokeninfo, 2 , tokeninfo_arity) ,
142142 } ;
@@ -236,7 +236,7 @@ fn create_get_location_predicate(def_table: &str, arity: usize) -> ql::Predicate
236236 qldoc : Some ( String :: from ( "Gets the location of this element." ) ) ,
237237 name : "getLocation" ,
238238 overridden : true ,
239- return_type : Some ( ql:: Type :: Normal ( "Location" ) ) ,
239+ return_type : Some ( ql:: Type :: Normal ( "L:: Location" ) ) ,
240240 formal_parameters : vec ! [ ] ,
241241 // body of the form: foo_bar_def(_, _, ..., result)
242242 body : ql:: Expression :: Pred (
0 commit comments