From a98b8ddd1a0337b7d4bf1b9722066685e5d3f16e Mon Sep 17 00:00:00 2001 From: Evan Richter Date: Tue, 19 Dec 2023 16:31:27 -0700 Subject: add smali language support (#9089) --- runtime/queries/smali/locals.scm | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 runtime/queries/smali/locals.scm (limited to 'runtime/queries/smali/locals.scm') diff --git a/runtime/queries/smali/locals.scm b/runtime/queries/smali/locals.scm new file mode 100644 index 00000000..34369490 --- /dev/null +++ b/runtime/queries/smali/locals.scm @@ -0,0 +1,42 @@ +[ + (class_directive) + (expression) + (annotation_directive) + (array_data_directive) + (method_definition) + (packed_switch_directive) + (sparse_switch_directive) + (subannotation_directive) +] @local.scope + +[ + (identifier) + (class_identifier) + (label) + (jmp_label) +] @local.reference + +(enum_reference + (field_identifier) @local.definition) + +((field_definition + (access_modifiers) @_mod + (field_identifier) @local.definition) + (#eq? @_mod "enum")) + +(field_definition + (field_identifier) @local.definition + (field_type) @local.definition) + +(annotation_key) @local.definition + +(method_definition + (method_signature (method_identifier) @local.definition)) + +(param_identifier) @local.definition + +(annotation_directive + (class_identifier) @local.definition) + +(class_directive + (class_identifier) @local.definition) -- cgit v1.2.3-70-g09d2