Skip to main content

luaur_analysis/methods/
autocomplete_node_finder_visit_ast_query_alt_e.rs

1use crate::records::autocomplete_node_finder::AutocompleteNodeFinder;
2use luaur_ast::records::ast_type_pack::AstTypePack;
3
4impl AutocompleteNodeFinder {
5    pub fn visit_ast_type_pack(&mut self, _type_pack: *mut AstTypePack) -> bool {
6        true
7    }
8}