Skip to content

Commit

Permalink
Fix FQ
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 16, 2024
1 parent fe5806f commit fea570d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate-code/src/generators/visitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ impl Generator {
trait_methods.push(parse_quote!(
#method_doc
fn #visit_method_name #lifetime (&mut self, node: #type_param #ast_path_params) #return_type {
<#type_name as #with_trait_name>::#visit_with_children_name(node, self #ast_path_arg)
<#type_name as #with_trait_name<Self>>::#visit_with_children_name(node, self #ast_path_arg)
}
));
}
Expand Down

0 comments on commit fea570d

Please sign in to comment.