mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 05:20:00 -04:00
191 lines
2.7 KiB
Scheme
191 lines
2.7 KiB
Scheme
; Types
|
|
|
|
(class_identifier) @type
|
|
|
|
(primitive_type) @type.builtin
|
|
|
|
((class_identifier) @type.builtin
|
|
(#vim-match? @type.builtin "^L(android|com/android|dalvik|java)/"))
|
|
|
|
; Methods
|
|
|
|
(method_definition
|
|
(method_signature (method_identifier) @method))
|
|
|
|
(expression
|
|
(opcode) @_invoke
|
|
(value
|
|
(body
|
|
(full_method_signature
|
|
(method_signature (method_identifier) @method.call))))
|
|
(#lua-match? @_invoke "^invoke"))
|
|
|
|
(method_handle
|
|
(full_method_signature
|
|
(method_signature (method_identifier) @method.call)))
|
|
|
|
(call_site) @method.call
|
|
|
|
(custom_invoke
|
|
(method_signature (method_identifier) @method.call))
|
|
|
|
(annotation_value
|
|
(body
|
|
(method_signature (method_identifier) @method.call)))
|
|
|
|
(annotation_value
|
|
(body
|
|
(full_method_signature
|
|
(method_signature (method_identifier) @method.call))))
|
|
|
|
(field_definition
|
|
(value
|
|
(body
|
|
(method_signature (method_identifier) @method.call))))
|
|
|
|
(field_definition
|
|
(value
|
|
(body
|
|
(full_method_signature
|
|
(method_signature (method_identifier) @method.call)))))
|
|
|
|
((method_signature
|
|
(method_identifier) @constructor)
|
|
(#any-of? @constructor "<init>" "<clinit>"))
|
|
|
|
; Fields
|
|
|
|
(field_identifier) @field
|
|
|
|
(annotation_key) @field
|
|
|
|
; Variables
|
|
|
|
(variable) @variable.builtin
|
|
|
|
(local_directive
|
|
(identifier) @variable)
|
|
|
|
; Parameters
|
|
|
|
(parameter) @parameter.builtin
|
|
(param_identifier) @parameter
|
|
|
|
; Labels
|
|
|
|
[
|
|
(label)
|
|
(jmp_label)
|
|
] @label
|
|
|
|
; Operators
|
|
|
|
(opcode) @keyword.operator
|
|
|
|
((opcode) @keyword.return
|
|
(#lua-match? @keyword.return "^return"))
|
|
|
|
((opcode) @conditional
|
|
(#vim-match? @conditional "^(if|cmp)"))
|
|
|
|
((opcode) @exception
|
|
(#lua-match? @exception "^throw"))
|
|
|
|
[
|
|
"="
|
|
".."
|
|
] @operator
|
|
|
|
; Keywords
|
|
|
|
[
|
|
".class"
|
|
".super"
|
|
".source"
|
|
".implements"
|
|
".field"
|
|
".end field"
|
|
".annotation"
|
|
".end annotation"
|
|
".subannotation"
|
|
".end subannotation"
|
|
".param"
|
|
".end param"
|
|
".parameter"
|
|
".end parameter"
|
|
".line"
|
|
".locals"
|
|
".local"
|
|
".end local"
|
|
".restart local"
|
|
".registers"
|
|
".catch"
|
|
".catchall"
|
|
".packed-switch"
|
|
".end packed-switch"
|
|
".sparse-switch"
|
|
".end sparse-switch"
|
|
".array-data"
|
|
".end array-data"
|
|
".enum"
|
|
] @keyword
|
|
|
|
[
|
|
(prologue_directive)
|
|
(epilogue_directive)
|
|
] @keyword
|
|
|
|
[
|
|
".method"
|
|
".end method"
|
|
] @keyword.function
|
|
|
|
; Literals
|
|
|
|
(string) @string
|
|
(escape_sequence) @string.escape
|
|
|
|
(character) @character
|
|
|
|
(number) @number
|
|
|
|
[
|
|
(float)
|
|
(NaN)
|
|
(Infinity)
|
|
] @float
|
|
|
|
(boolean) @boolean
|
|
|
|
(null) @constant.builtin
|
|
|
|
; Misc
|
|
|
|
(annotation_visibility) @storageclass
|
|
|
|
(access_modifiers) @type.qualifier
|
|
|
|
(array_type
|
|
"[" @punctuation.special)
|
|
|
|
["{" "}"] @punctuation.bracket
|
|
|
|
["(" ")"] @punctuation.bracket
|
|
|
|
[
|
|
"->"
|
|
":"
|
|
","
|
|
"@"
|
|
] @punctuation.delimiter
|
|
|
|
; Comments
|
|
|
|
(comment) @comment @spell
|
|
|
|
(class_definition
|
|
(comment) @comment.documentation)
|
|
|
|
; Errors
|
|
|
|
(ERROR) @error
|