We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ef15c commit d6e8555Copy full SHA for d6e8555
1 file changed
shared/tree-sitter-extractor/src/generator/ql_gen.rs
@@ -888,7 +888,10 @@ pub fn create_print_ast_module(nodes: &node_types::NodeTypeMap) -> ql::TopLevel<
888
// `ReservedWordInt` fields have string-valued getters, so they
889
// are not children and are excluded (just as they are from
890
// `getAFieldOrChild`).
891
- if matches!(field.type_info, node_types::FieldTypeInfo::ReservedWordInt(_)) {
+ if matches!(
892
+ field.type_info,
893
+ node_types::FieldTypeInfo::ReservedWordInt(_)
894
+ ) {
895
continue;
896
}
897
let has_index = matches!(
0 commit comments