aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/java
diff options
context:
space:
mode:
authorKirawi2021-08-10 05:09:57 +0000
committerGitHub2021-08-10 05:09:57 +0000
commitb239f0f45ffd0993cffc2a676651a0770b705fb5 (patch)
tree9221d01e030f1418abccedfae8d36e8ff449bb84 /runtime/queries/java
parent86209c93a3569c9c152bd8b1c66798a78a1b9317 (diff)
add java highlighting (#448)
Diffstat (limited to 'runtime/queries/java')
-rw-r--r--runtime/queries/java/highlights.scm129
1 files changed, 129 insertions, 0 deletions
diff --git a/runtime/queries/java/highlights.scm b/runtime/queries/java/highlights.scm
new file mode 100644
index 00000000..3f8ae0d5
--- /dev/null
+++ b/runtime/queries/java/highlights.scm
@@ -0,0 +1,129 @@
+; Methods
+
+(method_declaration
+ name: (identifier) @function.method)
+(method_invocation
+ name: (identifier) @function.method)
+(super) @function.builtin
+
+; Annotations
+
+(annotation
+ name: (identifier) @attribute)
+(marker_annotation
+ name: (identifier) @attribute)
+
+"@" @operator
+
+; Types
+
+(interface_declaration
+ name: (identifier) @type)
+(class_declaration
+ name: (identifier) @type)
+(enum_declaration
+ name: (identifier) @type)
+
+((field_access
+ object: (identifier) @type)
+ (#match? @type "^[A-Z]"))
+((scoped_identifier
+ scope: (identifier) @type)
+ (#match? @type "^[A-Z]"))
+
+(constructor_declaration
+ name: (identifier) @type)
+
+(type_identifier) @type
+
+[
+ (boolean_type)
+ (integral_type)
+ (floating_point_type)
+ (floating_point_type)
+ (void_type)
+] @type.builtin
+
+; Variables
+
+((identifier) @constant
+ (#match? @constant "^_*[A-Z][A-Z\d_]+"))
+
+(identifier) @variable
+
+(this) @variable.builtin
+
+; Literals
+
+[
+ (hex_integer_literal)
+ (decimal_integer_literal)
+ (octal_integer_literal)
+ (decimal_floating_point_literal)
+ (hex_floating_point_literal)
+] @number
+
+[
+ (character_literal)
+ (string_literal)
+] @string
+
+[
+ (true)
+ (false)
+ (null_literal)
+] @constant.builtin
+
+(comment) @comment
+
+; Keywords
+
+[
+ "abstract"
+ "assert"
+ "break"
+ "case"
+ "catch"
+ "class"
+ "continue"
+ "default"
+ "do"
+ "else"
+ "enum"
+ "exports"
+ "extends"
+ "final"
+ "finally"
+ "for"
+ "if"
+ "implements"
+ "import"
+ "instanceof"
+ "interface"
+ "module"
+ "native"
+ "new"
+ "open"
+ "opens"
+ "package"
+ "private"
+ "protected"
+ "provides"
+ "public"
+ "requires"
+ "return"
+ "static"
+ "strictfp"
+ "switch"
+ "synchronized"
+ "throw"
+ "throws"
+ "to"
+ "transient"
+ "transitive"
+ "try"
+ "uses"
+ "volatile"
+ "while"
+ "with"
+] @keyword