rxcc
Version:
A tool to pack repository contents to single file for AI consumption
34 lines (25 loc) • 911 B
JavaScript
export const queryJava = `
(line_comment)
(block_comment)
(import_declaration
.
(identifier) .reference.module) .import
(package_declaration
.
(identifier) .reference.module) .import
(class_declaration
name: (identifier) .definition.class) .class
(method_declaration
name: (identifier) .definition.method) .method
(method_invocation
name: (identifier) .reference.call
arguments: (argument_list) .call)
(interface_declaration
name: (identifier) .definition.interface) .interface
(type_list
(type_identifier) .reference.implementation) .implementation
(object_creation_expression
type: (type_identifier) .reference.class) .class
(superclass (type_identifier) .reference.class) .class
`;
//# sourceMappingURL=queryJava.js.map