I fear the upstream queries may be broken, somehow, as they don't work with `--apply-all-captures` which should match the "last query wins" matching behaviour of `nvim-treesitter`. I also removed `locals.scm`, as `tree-sitter` and `nvim-treesitter` don't agree on how to write it, and I don't really care about it. It does mean that the highlights can't tell the difference between `int` the built-in and `int` the type alias anymore, but that's a small edge-case (and `nvim-treesitter` didn't support it anyway).
This commit is contained in:
parent
89c9bb270d
commit
db10520755
11 changed files with 149 additions and 149 deletions
|
|
@ -8,9 +8,7 @@
|
||||||
(let_expression)
|
(let_expression)
|
||||||
(function_declaration)
|
(function_declaration)
|
||||||
(primitive_declaration)
|
(primitive_declaration)
|
||||||
|
|
||||||
(record_type)
|
(record_type)
|
||||||
|
|
||||||
(class_declaration)
|
(class_declaration)
|
||||||
(class_type)
|
(class_type)
|
||||||
(method_declaration)
|
(method_declaration)
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,22 @@
|
||||||
; Built-ins {{{
|
; Built-ins {{{
|
||||||
((function_call
|
((function_call
|
||||||
function: (identifier) @function.builtin)
|
function: (identifier) @function.builtin)
|
||||||
(#match? @function.builtin "^(chr|concat|exit|flush|getchar|not|ord|print|print_err|print_int|size|strcmp|streq|substring)$")
|
(#any-of? @function.builtin
|
||||||
(#is-not? local))
|
"chr" "concat" "exit" "flush" "getchar" "not" "ord" "print" "print_err" "print_int" "size"
|
||||||
|
"strcmp" "streq" "substring"))
|
||||||
|
|
||||||
((type_identifier) @type.builtin
|
((type_identifier) @type.builtin
|
||||||
(#match? @type.builtin "^(int|string|Object)$")
|
(#any-of? @type.builtin "int" "string" "Object"))
|
||||||
(#is-not? local))
|
|
||||||
|
|
||||||
((identifier) @variable.builtin
|
((identifier) @variable.builtin
|
||||||
(#match? @variable.builtin "^self$")
|
(#eq? @variable.builtin "self"))
|
||||||
(#is-not? local))
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Keywords {{{
|
; Keywords {{{
|
||||||
[
|
[
|
||||||
"function"
|
"function"
|
||||||
"method"
|
"primitive"
|
||||||
"primitive"
|
"method"
|
||||||
] @keyword.function
|
] @keyword.function
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
@ -27,14 +26,9 @@
|
||||||
"while"
|
"while"
|
||||||
] @keyword.repeat
|
] @keyword.repeat
|
||||||
|
|
||||||
[
|
"new" @keyword.operator
|
||||||
"new"
|
|
||||||
] @keyword.constructor
|
|
||||||
|
|
||||||
|
"import" @keyword.import
|
||||||
[
|
|
||||||
"import"
|
|
||||||
] @include
|
|
||||||
|
|
||||||
[
|
[
|
||||||
"array"
|
"array"
|
||||||
|
|
@ -48,73 +42,80 @@
|
||||||
"then"
|
"then"
|
||||||
"type"
|
"type"
|
||||||
"var"
|
"var"
|
||||||
|
|
||||||
"class"
|
|
||||||
"extends"
|
"extends"
|
||||||
|
|
||||||
"_cast"
|
"_cast"
|
||||||
"_chunks"
|
"_chunks"
|
||||||
"_exp"
|
"_exp"
|
||||||
"_lvalue"
|
"_lvalue"
|
||||||
"_namety"
|
"_namety"
|
||||||
] @keyword
|
] @keyword
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
"class" @keyword.type
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Operators {{{
|
; Operators {{{
|
||||||
(operator) @operator
|
(operator) @operator
|
||||||
|
|
||||||
[
|
[
|
||||||
","
|
","
|
||||||
";"
|
";"
|
||||||
":"
|
":"
|
||||||
"."
|
"."
|
||||||
] @punctuation.delimiter
|
] @punctuation.delimiter
|
||||||
|
|
||||||
[
|
[
|
||||||
"("
|
"("
|
||||||
")"
|
")"
|
||||||
"["
|
"["
|
||||||
"]"
|
"]"
|
||||||
"{"
|
"{"
|
||||||
"}"
|
"}"
|
||||||
] @punctuation.bracket
|
] @punctuation.bracket
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Functions and methods {{{
|
; Functions and methods {{{
|
||||||
(function_call
|
(function_call
|
||||||
function: (identifier) @function)
|
function: (identifier) @function)
|
||||||
|
|
||||||
(function_declaration
|
(function_declaration
|
||||||
name: (identifier) @function)
|
name: (identifier) @function)
|
||||||
|
|
||||||
(primitive_declaration
|
(primitive_declaration
|
||||||
name: (identifier) @function)
|
name: (identifier) @function)
|
||||||
|
|
||||||
(method_call
|
(method_call
|
||||||
method: (identifier) @method)
|
method: (identifier) @function.method)
|
||||||
|
|
||||||
(method_declaration
|
(method_declaration
|
||||||
name: (identifier) @method)
|
name: (identifier) @function.method)
|
||||||
|
|
||||||
(parameters
|
(parameters
|
||||||
name: (identifier) @parameter)
|
name: (identifier) @variable.parameter)
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Declarations {{{
|
; Declarations {{{
|
||||||
(import_declaration
|
(import_declaration
|
||||||
file: (string_literal) @string.special.path)
|
file: (string_literal) @string.special.path)
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Literals {{{
|
; Literals {{{
|
||||||
(nil_literal) @constant.builtin
|
(nil_literal) @constant.builtin
|
||||||
(integer_literal) @number
|
|
||||||
(string_literal) @string
|
|
||||||
(escape_sequence) @string.escape
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
(integer_literal) @number
|
||||||
|
|
||||||
|
(string_literal) @string
|
||||||
|
|
||||||
|
(escape_sequence) @string.escape
|
||||||
|
|
||||||
|
; }}}
|
||||||
; Misc {{{
|
; Misc {{{
|
||||||
(comment) @comment
|
(comment) @comment ; @spell
|
||||||
|
|
||||||
(type_identifier) @type
|
(type_identifier) @type
|
||||||
(field_identifier) @property
|
|
||||||
(identifier) @variable
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
(field_identifier) @variable.member
|
||||||
|
|
||||||
|
(identifier) @variable
|
||||||
|
|
||||||
|
; }}}
|
||||||
; vim: sw=2 foldmethod=marker
|
; vim: sw=2 foldmethod=marker
|
||||||
|
|
|
||||||
|
|
@ -1,69 +1,104 @@
|
||||||
; Control flow {{{
|
; Control flow {{{
|
||||||
(if_expression) @indent
|
(if_expression) @indent.begin
|
||||||
"then" @branch
|
|
||||||
"else" @branch
|
|
||||||
|
|
||||||
(while_expression) @indent
|
"then" @indent.branch
|
||||||
"do" @branch
|
|
||||||
|
"else" @indent.branch
|
||||||
|
|
||||||
|
(while_expression) @indent.begin
|
||||||
|
|
||||||
|
"do" @indent.branch
|
||||||
|
|
||||||
|
(for_expression) @indent.begin
|
||||||
|
|
||||||
|
"to" @indent.branch
|
||||||
|
|
||||||
(for_expression) @indent
|
|
||||||
"to" @branch
|
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Class {{{
|
; Class {{{
|
||||||
(class_declaration) @indent
|
(class_declaration) @indent.begin
|
||||||
(class_declaration "}" @indent_end)
|
|
||||||
|
(class_declaration
|
||||||
|
"}" @indent.end)
|
||||||
|
|
||||||
|
(class_type) @indent.begin
|
||||||
|
|
||||||
|
(class_type
|
||||||
|
"}" @indent.end)
|
||||||
|
|
||||||
(class_type) @indent
|
|
||||||
(class_type "}" @indent_end)
|
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Groups {{{
|
; Groups {{{
|
||||||
(let_expression) @indent
|
(let_expression) @indent.begin
|
||||||
"in" @branch
|
|
||||||
"end" @branch
|
"in" @indent.branch
|
||||||
(let_expression "end" @indent_end)
|
|
||||||
|
"end" @indent.branch
|
||||||
|
|
||||||
|
(let_expression
|
||||||
|
"end" @indent.end)
|
||||||
|
|
||||||
|
(sequence_expression) @indent.begin
|
||||||
|
|
||||||
|
")" @indent.branch
|
||||||
|
|
||||||
|
(sequence_expression
|
||||||
|
")" @indent.end)
|
||||||
|
|
||||||
(sequence_expression) @indent
|
|
||||||
")" @branch
|
|
||||||
(sequence_expression ")" @indent_end)
|
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Functions and methods {{{
|
; Functions and methods {{{
|
||||||
(parameters) @indent
|
(parameters) @indent.begin
|
||||||
(parameters ")" @indent_end)
|
|
||||||
|
|
||||||
(function_call) @indent
|
(parameters
|
||||||
(method_call) @indent
|
")" @indent.end)
|
||||||
")" @branch
|
|
||||||
|
(function_call) @indent.begin
|
||||||
|
|
||||||
|
(function_call
|
||||||
|
")" @indent.end)
|
||||||
|
|
||||||
|
(method_call) @indent.begin
|
||||||
|
|
||||||
|
")" @indent.branch
|
||||||
|
|
||||||
|
(function_declaration) @indent.begin
|
||||||
|
|
||||||
|
(primitive_declaration) @indent.begin
|
||||||
|
|
||||||
|
(method_declaration) @indent.begin
|
||||||
|
|
||||||
(function_declaration) @indent
|
|
||||||
(primitive_declaration) @indent
|
|
||||||
(method_declaration) @indent
|
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Values and expressions {{{
|
; Values and expressions {{{
|
||||||
(array_value) @indent
|
(array_value) @indent.begin
|
||||||
"]" @branch
|
|
||||||
(array_value "]" @indent_end)
|
|
||||||
|
|
||||||
(array_expression) @indent
|
"]" @indent.branch
|
||||||
"of" @branch
|
|
||||||
|
|
||||||
(record_expression) @indent
|
(array_value
|
||||||
"}" @branch
|
"]" @indent.end)
|
||||||
(record_expression "}" @indent_end)
|
|
||||||
|
|
||||||
(record_type) @indent
|
(array_expression) @indent.begin
|
||||||
"}" @branch
|
|
||||||
(record_type "}" @indent_end)
|
"of" @indent.branch
|
||||||
|
|
||||||
|
(record_expression) @indent.begin
|
||||||
|
|
||||||
|
"}" @indent.branch
|
||||||
|
|
||||||
|
(record_expression
|
||||||
|
"}" @indent.end)
|
||||||
|
|
||||||
|
(record_type) @indent.begin
|
||||||
|
|
||||||
|
"}" @indent.branch
|
||||||
|
|
||||||
|
(record_type
|
||||||
|
"}" @indent.end)
|
||||||
|
|
||||||
|
(variable_declaration) @indent.begin
|
||||||
|
|
||||||
(variable_declaration) @indent
|
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Misc{{{
|
; Misc{{{
|
||||||
(comment) @ignore
|
(comment) @indent.ignore
|
||||||
(string_literal) @ignore
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
|
(string_literal) @indent.ignore
|
||||||
|
|
||||||
|
; }}}
|
||||||
; vim: sw=2 foldmethod=marker
|
; vim: sw=2 foldmethod=marker
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
(comment) @comment
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "comment"))
|
||||||
|
|
||||||
; vim: sw=2 foldmethod=marker
|
; vim: sw=2 foldmethod=marker
|
||||||
|
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
; See this issue [1] for support for "lazy scoping" which is somewhat needed
|
|
||||||
; for Tiger semantics (e.g: one can call a function before it has been defined
|
|
||||||
; top-to-bottom).
|
|
||||||
;
|
|
||||||
; [1]: https://github.com/tree-sitter/tree-sitter/issues/918
|
|
||||||
|
|
||||||
; Scopes {{{
|
|
||||||
[
|
|
||||||
(for_expression)
|
|
||||||
(let_expression)
|
|
||||||
(function_declaration)
|
|
||||||
] @local.scope
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
; Definitions {{{
|
|
||||||
(type_declaration
|
|
||||||
name: (identifier) @local.definition)
|
|
||||||
|
|
||||||
(parameters
|
|
||||||
name: (identifier) @local.definition)
|
|
||||||
|
|
||||||
(function_declaration
|
|
||||||
name: (identifier) @local.definition)
|
|
||||||
(primitive_declaration
|
|
||||||
name: (identifier) @local.definition)
|
|
||||||
|
|
||||||
(variable_declaration
|
|
||||||
name: (identifier) @local.definition)
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
; References {{{
|
|
||||||
(identifier) @local.reference
|
|
||||||
; }}}
|
|
||||||
|
|
||||||
; vim: sw=2 foldmethod=marker
|
|
||||||
|
|
@ -6,7 +6,7 @@ let
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
|
|
||||||
var b := exit(0)
|
var b := exit(0)
|
||||||
/* ^ function */
|
/* ^ function.builtin */
|
||||||
|
|
||||||
type int = string /* Shadowing the built-in type */
|
type int = string /* Shadowing the built-in type */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
|
|
@ -30,13 +30,13 @@ in
|
||||||
end;
|
end;
|
||||||
|
|
||||||
exit(1);
|
exit(1);
|
||||||
/* <- function */
|
/* <- function.builtin */
|
||||||
|
|
||||||
print("shadowing is fun");
|
print("shadowing is fun");
|
||||||
/* <- function.builtin */
|
/* <- function.builtin */
|
||||||
|
|
||||||
self;
|
self;
|
||||||
/* <- variable */
|
/* <- variable.builtin */
|
||||||
|
|
||||||
b := print
|
b := print
|
||||||
/* ^ variable */
|
/* ^ variable */
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
primitive print(s: string)
|
primitive print(s: string)
|
||||||
/* ^ function */
|
/* ^ function */
|
||||||
/* ^ parameter */
|
/* ^ variable.parameter */
|
||||||
|
|
||||||
function func(a: int) : int = (print("Hello World!"); a)
|
function func(a: int) : int = (print("Hello World!"); a)
|
||||||
/* ^ function */
|
/* ^ function */
|
||||||
/* ^ parameter */
|
/* ^ variable.parameter */
|
||||||
/* ^ function */
|
/* ^ function.builtin */
|
||||||
|
|
|
||||||
|
|
@ -6,24 +6,24 @@ type int_array = array of int
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
|
|
||||||
type record = {a: int, b: string}
|
type record = {a: int, b: string}
|
||||||
/* ^ property */
|
/* ^ variable.member */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
/* ^ property */
|
/* ^ variable.member */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
|
|
||||||
var record := record {a = 12, b = "27"}
|
var record := record {a = 12, b = "27"}
|
||||||
/* ^ variable */
|
/* ^ variable */
|
||||||
/* ^ type */
|
/* ^ type */
|
||||||
/* ^ property */
|
/* ^ variable.member */
|
||||||
/* ^ property */
|
/* ^ variable.member */
|
||||||
|
|
||||||
var array := int_array[12] of 27;
|
var array := int_array[12] of 27;
|
||||||
/* ^ variable */
|
/* ^ variable */
|
||||||
/* ^ type */
|
/* ^ type */
|
||||||
|
|
||||||
primitive func(a: int, b: string) : array
|
primitive func(a: int, b: string) : array
|
||||||
/* ^ parameter */
|
/* ^ variable.parameter */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
/* ^ parameter */
|
/* ^ variable.parameter */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
/* ^ type */
|
/* ^ type */
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
import "lib.tih"
|
import "lib.tih"
|
||||||
/* <- include */
|
/* <- keyword.import */
|
||||||
/* ^ string.special.path */
|
/* ^ string.special.path */
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ let
|
||||||
/* <- keyword.function */
|
/* <- keyword.function */
|
||||||
|
|
||||||
import "lib.tih"
|
import "lib.tih"
|
||||||
/* <- include */
|
/* <- keyword.import */
|
||||||
|
|
||||||
type array_of_int = array of int
|
type array_of_int = array of int
|
||||||
/* <- keyword */
|
/* <- keyword */
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
let
|
let
|
||||||
class A extends Object {}
|
class A extends Object {}
|
||||||
/* <- keyword */
|
/* <- keyword.type */
|
||||||
/* ^ keyword */
|
/* ^ keyword */
|
||||||
/* ^ type.builtin */
|
/* ^ type.builtin */
|
||||||
|
|
||||||
type B = class extends A {
|
type B = class extends A {
|
||||||
/* ^ keyword */
|
/* ^ keyword.type */
|
||||||
/* ^ keyword */
|
/* ^ keyword */
|
||||||
/* ^ type */
|
/* ^ type */
|
||||||
|
|
||||||
|
|
@ -13,16 +13,16 @@ let
|
||||||
|
|
||||||
method meth() : int = self.a
|
method meth() : int = self.a
|
||||||
/* <- keyword.function */
|
/* <- keyword.function */
|
||||||
/* ^ method */
|
/* ^ function.method */
|
||||||
/* ^ variable.builtin */
|
/* ^ variable.builtin */
|
||||||
}
|
}
|
||||||
|
|
||||||
var object := new B
|
var object := new B
|
||||||
/* ^ keyword.constructor */
|
/* ^ keyword.operator */
|
||||||
in
|
in
|
||||||
object.a := 27;
|
object.a := 27;
|
||||||
/* ^ property */
|
/* ^ variable.member */
|
||||||
|
|
||||||
object.meth()
|
object.meth()
|
||||||
/* ^ method */
|
/* ^ function.method */
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue