feat!: drop modules, general refactor and cleanup

This commit is contained in:
Christian Clason 2023-06-12 09:54:30 -06:00
parent c13e28f894
commit 2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions

View file

@ -0,0 +1,19 @@
[
(array_expression)
(record_expression)
(sequence_expression)
(if_expression)
(while_expression)
(for_expression)
(let_expression)
(function_declaration)
(primitive_declaration)
(record_type)
(class_declaration)
(class_type)
(method_declaration)
] @fold
; vim: sw=2 foldmethod=marker

View file

@ -0,0 +1,115 @@
; Built-ins {{{
((function_call
function: (identifier) @function.builtin)
(#any-of? @function.builtin "chr" "concat" "exit" "flush" "getchar" "not" "ord" "print" "print_err" "print_int" "size" "strcmp" "streq" "substring")
)
((type_identifier) @type.builtin
(#any-of? @type.builtin "int" "string" "Object")
)
((identifier) @variable.builtin
(#eq? @variable.builtin "self")
)
; }}}
; Keywords {{{
[
"function"
"primitive"
"method"
] @keyword.function
[
"do"
"for"
"to"
"while"
] @repeat
"new" @keyword.operator
"import" @include
[
"array"
(break_expression)
"else"
"end"
"if"
"in"
"let"
"of"
"then"
"type"
"var"
"class"
"extends"
"_cast"
"_chunks"
"_exp"
"_lvalue"
"_namety"
] @keyword
; }}}
; Operators {{{
(operator) @operator
[
","
";"
":"
"."
] @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
; }}}
; Functions and methods {{{
(function_call
function: (identifier) @function)
(function_declaration
name: (identifier) @function)
(primitive_declaration
name: (identifier) @function)
(method_call
method: (identifier) @method)
(method_declaration
name: (identifier) @method)
(parameters
name: (identifier) @parameter)
; }}}
; Declarations {{{
(import_declaration
file: (string_literal) @string.special)
; }}}
; Literals {{{
(nil_literal) @constant.builtin
(integer_literal) @number
(string_literal) @string
(escape_sequence) @string.escape
; }}}
; Misc {{{
(comment) @comment
(type_identifier) @type
(field_identifier) @property
(identifier) @variable
; }}}
; vim: sw=2 foldmethod=marker

View file

@ -0,0 +1,70 @@
; Control flow {{{
(if_expression) @indent.begin
"then" @indent.branch
"else" @indent.branch
(while_expression) @indent.begin
"do" @indent.branch
(for_expression) @indent.begin
"to" @indent.branch
; }}}
; Class {{{
(class_declaration) @indent.begin
(class_declaration "}" @indent.end)
(class_type) @indent.begin
(class_type "}" @indent.end)
; }}}
; Groups {{{
(let_expression) @indent.begin
"in" @indent.branch
"end" @indent.branch
(let_expression "end" @indent.end)
(sequence_expression) @indent.begin
")" @indent.branch
(sequence_expression ")" @indent.end)
; }}}
; Functions and methods {{{
(parameters) @indent.begin
(parameters ")" @indent.end)
(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
; }}}
; Values and expressions {{{
(array_value) @indent.begin
"]" @indent.branch
(array_value "]" @indent.end)
(array_expression) @indent.begin
"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
; }}}
; Misc{{{
(comment) @indent.ignore
(string_literal) @indent.ignore
; }}}
; vim: sw=2 foldmethod=marker

View file

@ -0,0 +1,4 @@
((comment) @injection.content
(#set! injection.language "comment"))
; vim: sw=2 foldmethod=marker

View file

@ -0,0 +1,39 @@
; 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)
] @scope
; }}}
; Definitions {{{
(type_declaration
name: (identifier) @definition.type
(#set! "definition.var.scope" "parent"))
(parameters
name: (identifier) @definition.parameter)
(function_declaration
name: (identifier) @definition.function
(#set! "definition.var.scope" "parent"))
(primitive_declaration
name: (identifier) @definition.function
(#set! "definition.var.scope" "parent"))
(variable_declaration
name: (identifier) @definition.var
(#set! "definition.var.scope" "parent"))
; }}}
; References {{{
(identifier) @reference
; }}}
; vim: sw=2 foldmethod=marker