Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch MATLAB tree-sitter parser #7388

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
| markdoc | ✓ | | | `markdoc-ls` |
| markdown | ✓ | | | `marksman` |
| markdown.inline | ✓ | | | |
| matlab | ✓ | | | |
| matlab | ✓ | | | |
| mermaid | ✓ | | | |
| meson | ✓ | | ✓ | |
| mint | | | | `mint` |
Expand Down
2 changes: 1 addition & 1 deletion languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,7 @@ indent = { tab-width = 2, unit = " " }

[[grammar]]
name = "matlab"
source = { git = "https://github.com/mstanciu552/tree-sitter-matlab", rev = "2d5d3d5193718a86477d4335aba5b34e79147326" }
source = { git = "https://github.com/acristoffers/tree-sitter-matlab", rev = "5a047c1572792ae943b51af7cf9307097b2fcce0" }

[[language]]
name = "ponylang"
Expand Down
41 changes: 41 additions & 0 deletions runtime/queries/matlab/context.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
(function_definition
(block (_) @context.end)
) @context

(while_statement
(block (_) @context.end)
) @context

(for_statement
(block (_) @context.end)
) @context

(if_statement
(block (_) @context.end)
) @context

(elseif_clause
(block (_) @context.end)
) @context

(else_clause
(block (_) @context.end)
) @context

(switch_statement) @context

(case_clause
(block (_) @context.end)
) @context

(otherwise_clause
(block (_) @context.end)
) @context

(try_statement
"try"
(block (_) @context.end) @context
"end")
(catch_clause
"catch"
(block (_) @context.end) @context)
11 changes: 11 additions & 0 deletions runtime/queries/matlab/folds.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[(if_statement)
(for_statement)
(while_statement)
(switch_statement)
(try_statement)
(function_definition)
(class_definition)
(enumeration)
(events)
(methods)
(properties)] @fold
182 changes: 106 additions & 76 deletions runtime/queries/matlab/highlights.scm
Original file line number Diff line number Diff line change
@@ -1,97 +1,127 @@
; highlights.scm
; Constants

function_keyword: (function_keyword) @keyword.function
(events (identifier) @constant)
(attribute (identifier) @constant)

(function_definition
function_name: (identifier) @function
(end) @function)
"~" @constant.builtin

(parameter_list (identifier) @variable.parameter)
; Fields/Properties

[
"if"
"elseif"
"else"
"switch"
"case"
"otherwise"
] @keyword.control.conditional
(superclass "." (identifier) @variable.other.member)
(property_name "." (identifier) @variable.other.member)
(property name: (identifier) @variable.other.member)

(if_statement (end) @keyword.control.conditional)
(switch_statement (end) @keyword.control.conditional)
; Types

["for" "while"] @keyword.control.repeat
(for_statement (end) @keyword.control.repeat)
(while_statement (end) @keyword.control.repeat)
(class_definition name: (identifier) @keyword.storage.type)
(attributes (identifier) @constant)
(enum . (identifier) @type.enum.variant)

["try" "catch"] @keyword.control.exception
(try_statement (end) @keyword.control.exception)
; Functions

(function_definition end: (end) @keyword)
(function_definition
"function" @keyword.function
name: (identifier) @function
[ "end" "endfunction" ]? @keyword.function)

["return" "break" "continue"] @keyword.return
(function_signature name: (identifier) @function)
(function_call name: (identifier) @function)
(handle_operator (identifier) @function)
(validation_functions (identifier) @function)
(command (command_name) @function.macro)
(command_argument) @string
(return_statement) @keyword.control.return

(
(identifier) @constant.builtin
(#any-of? @constant.builtin "true" "false")
)
; Assignments

(
(identifier) @constant.builtin
(#eq? @constant.builtin "end")
)
(assignment left: (_) @variable)
(multioutput_variable (_) @variable)

;; Punctuations
; Parameters

[";" ","] @punctuation.special
(argument_list "," @punctuation.delimiter)
(vector_definition ["," ";"] @punctuation.delimiter)
(cell_definition ["," ";"] @punctuation.delimiter)
":" @punctuation.delimiter
(parameter_list "," @punctuation.delimiter)
(return_value "," @punctuation.delimiter)
(function_arguments (identifier) @variable.parameter)

; ;; Brackets
; Operators

[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket

;; Operators
"=" @operator
(operation [ ">"
"<"
"=="
"<="
">="
"=<"
"=>"
"~="
"*"
".*"
"/"
"\\"
"./"
"^"
".^"
"+"] @operator)

;; boolean operator
[
"&&"
"||"
"+"
".+"
"-"
".*"
"*"
".*"
"/"
"./"
"\\"
".\\"
"^"
".^"
"'"
".'"
"|"
"&"
"?"
"@"
"<"
"<="
">"
">="
"=="
"~="
"="
"&&"
"||"
":"
] @operator

;; Number
(number) @constant.numeric
; Conditionals

(if_statement [ "if" "end" ] @keyword.control.conditional)
(elseif_clause "elseif" @keyword.control.conditional)
(else_clause "else" @keyword.control.conditional)
(switch_statement [ "switch" "end" ] @keyword.control.conditional)
(case_clause "case" @keyword.control.conditional)
(otherwise_clause "otherwise" @keyword.control.conditional)
(break_statement) @keyword.control.conditional

; Repeats

(for_statement [ "for" "parfor" "end" ] @keyword.control.repeat)
(while_statement [ "while" "end" ] @keyword.control.repeat)
(continue_statement) @keyword.control.repeat

; Exceptions

;; String
(try_statement [ "try" "end" ] @keyword.control.exception)
(catch_clause "catch" @keyword.control.exception)

; Punctuation

[ ";" "," "." ] @punctuation.delimiter
[ "(" ")" "[" "]" "{" "}" ] @punctuation.bracket

; Literals

(escape_sequence) @constant.character.escape
(formatting_sequence) @constant.character.escape
(string) @string
(number) @constant.numeric.float
(boolean) @constant.builtin.boolean

;; Comment
(comment) @comment
; Comments

[ (comment) (line_continuation) ] @comment.line

; Keywords

"classdef" @keyword.storage.type
[
"arguments"
"end"
"enumeration"
"events"
"global"
"methods"
"persistent"
"properties"
] @keyword
23 changes: 23 additions & 0 deletions runtime/queries/matlab/indents.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
(if_statement)
(for_statement)
(while_statement)
(switch_statement)
(try_statement)
(function_definition)
(class_definition)
(enumeration)
(events)
(methods)
(properties)
] @indent

[
(elseif_clause)
(else_clause)
(case_clause)
(otherwise_clause)
(catch_clause)
] @indent @extend

[ "end" ] @outdent
2 changes: 2 additions & 0 deletions runtime/queries/matlab/injections.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
((comment) @injection.content
(#set! injection.language "comment"))
19 changes: 19 additions & 0 deletions runtime/queries/matlab/locals.scm
acristoffers marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
(function_definition name: (identifier) @local.definition ?) @local.scope
(function_arguments (identifier)* @local.definition)

(lambda (arguments (identifier) @local.definition)) @local.scope

(assignment left: ((function_call
name: (identifier) @local.definition)))
(assignment left: ((field_expression . [(function_call
name: (identifier) @local.definition)
(identifier) @local.definition])))
(assignment left: (_) @local.definition)
(assignment (multioutput_variable (_) @local.definition))

(iterator . (identifier) @local.definition)
(global_operator (identifier) @local.definition)
(persistent_operator (identifier) @local.definition)
(catch_clause (identifier) @local.definition)

(identifier) @local.reference
9 changes: 9 additions & 0 deletions runtime/queries/matlab/textobjects.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
(arguments ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(function_arguments ((_) @parameter.inside . ","? @parameter.around) @parameter.around)

(lambda expression: (_) @function.inside) @function.around
(function_definition (block) @function.inside) @function.around

(class_definition) @class.inside @class.around

(comment) @comment.inside @comment.around