-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1819478
commit 7cd6050
Showing
4 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
; Comments | ||
(module_comment) @comment | ||
(statement_comment) @comment | ||
(comment) @comment | ||
|
||
; Constants | ||
(constant | ||
name: (identifier) @constant) | ||
|
||
; Modules | ||
(module) @namespace | ||
(import alias: (identifier) @namespace) | ||
(remote_type_identifier | ||
module: (identifier) @namespace) | ||
((field_access | ||
record: (identifier) @namespace | ||
field: (label) @function) | ||
(#is-not? local)) | ||
|
||
; Functions | ||
(unqualified_import (identifier) @function) | ||
(function | ||
name: (identifier) @function) | ||
(external_function | ||
name: (identifier) @function) | ||
(function_parameter | ||
name: (identifier) @variable.parameter) | ||
((function_call | ||
function: (identifier) @function) | ||
(#is-not? local)) | ||
((binary_expression | ||
operator: "|>" | ||
right: (identifier) @function) | ||
(#is-not? local)) | ||
|
||
; "Properties" | ||
; Assumed to be intended to refer to a name for a field; something that comes | ||
; before ":" or after "." | ||
; e.g. record field names, tuple indices, names for named arguments, etc | ||
(label) @variable.other.member | ||
(tuple_access | ||
index: (integer) @variable.other.member) | ||
|
||
; Type names | ||
(remote_type_identifier) @type | ||
(type_identifier) @type | ||
|
||
; Literals | ||
(string) @string | ||
(bit_string_segment_option) @function.builtin | ||
(integer) @constant.numeric.integer | ||
(float) @constant.numeric.float | ||
|
||
; Variables | ||
(identifier) @variable | ||
(discard) @comment.unused | ||
|
||
; Operators | ||
(binary_expression | ||
operator: _ @operator) | ||
|
||
; Keywords | ||
[ | ||
(visibility_modifier) ; "pub" | ||
(opacity_modifier) ; "opaque" | ||
"as" | ||
"assert" | ||
"case" | ||
"const" | ||
"external" | ||
"fn" | ||
"if" | ||
"import" | ||
"let" | ||
"todo" | ||
"try" | ||
"type" | ||
] @keyword | ||
|
||
; Punctuation | ||
[ | ||
"(" | ||
")" | ||
"[" | ||
"]" | ||
"{" | ||
"}" | ||
"<<" | ||
">>" | ||
] @punctuation.bracket | ||
[ | ||
"." | ||
"," | ||
;; Controversial -- maybe some are operators? | ||
":" | ||
"#" | ||
"=" | ||
"->" | ||
".." | ||
"-" | ||
] @punctuation.delimiter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
; Scopes | ||
(function_body) @local.scope | ||
|
||
(case_clause) @local.scope | ||
|
||
; Definitions | ||
(let pattern: (identifier) @local.definition) | ||
(function_parameter name: (identifier) @local.definition) | ||
(list_pattern (identifier) @local.definition) | ||
(list_pattern assign: (identifier) @local.definition) | ||
(tuple_pattern (identifier) @local.definition) | ||
(record_pattern_argument pattern: (identifier) @local.definition) | ||
|
||
; References | ||
(identifier) @local.reference |