diff options
Diffstat (limited to 'runtime/queries/java/highlights.scm')
-rw-r--r-- | runtime/queries/java/highlights.scm | 83 |
1 files changed, 81 insertions, 2 deletions
diff --git a/runtime/queries/java/highlights.scm b/runtime/queries/java/highlights.scm index f049b8d2..ae99a33a 100644 --- a/runtime/queries/java/highlights.scm +++ b/runtime/queries/java/highlights.scm @@ -13,8 +13,6 @@ (marker_annotation name: (identifier) @attribute) -"@" @operator - ; Types (interface_declaration @@ -48,6 +46,9 @@ (void_type) ] @type.builtin +(type_arguments + (wildcard "?" @type.builtin)) + ; Variables ((identifier) @constant @@ -87,6 +88,84 @@ (line_comment) @comment (block_comment) @comment +; Punctuation + +[ + "::" + "." + ";" + "," +] @punctuation.delimiter + +[ + "@" + "..." +] @punctuation.special + +[ + "(" + ")" + "[" + "]" + "{" + "}" +] @punctuation.bracket + +(type_arguments + [ + "<" + ">" + ] @punctuation.bracket) + +(type_parameters + [ + "<" + ">" + ] @punctuation.bracket) + +; Operators + +[ + "=" + ">" + "<" + "!" + "~" + "?" + ":" + "->" + "==" + ">=" + "<=" + "!=" + "&&" + "||" + "++" + "--" + "+" + "-" + "*" + "/" + "&" + "|" + "^" + "%" + "<<" + ">>" + ">>>" + "+=" + "-=" + "*=" + "/=" + "&=" + "|=" + "^=" + "%=" + "<<=" + ">>=" + ">>>=" +] @operator + ; Keywords [ |