Update gleam grammar and queries (#9003)

This commit is contained in:
Frederick Schwalbe 2023-12-05 14:54:00 +01:00 committed by GitHub
parent 4c2bd4905e
commit c3cb1795bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 6 deletions

View File

@ -1624,7 +1624,7 @@ auto-format = true
[[grammar]]
name = "gleam"
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "a59aadf3d7c11702cad244e7cd6b67b34ca9c16a" }
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "b2afa4fd6bb41a7bf912b034c653c90af7ae5122" }
[[language]]
name = "ron"

View File

@ -21,6 +21,8 @@
; Functions
(unqualified_import (identifier) @function)
(unqualified_import "type" (type_identifier) @type)
(unqualified_import (type_identifier) @constructor)
(function
name: (identifier) @function)
(external_function
@ -43,6 +45,13 @@
(tuple_access
index: (integer) @variable.other.member)
; Attributes
(attribute
"@" @attribute
name: (identifier) @attribute)
(attribute_value (identifier) @constant)
; Type names
(remote_type_identifier) @type
(type_identifier) @type
@ -60,10 +69,6 @@
(identifier) @variable
(discard) @comment.unused
; Operators
(binary_expression
operator: _ @operator)
; Keywords
[
(visibility_modifier) ; "pub"
@ -72,6 +77,7 @@
"assert"
"case"
"const"
; DEPRECATED: 'external' was removed in v0.30.
"external"
"fn"
"if"
@ -79,11 +85,16 @@
"let"
"panic"
"todo"
"try"
"type"
"use"
] @keyword
; Operators
(binary_expression
operator: _ @operator)
(boolean_negation "!" @operator)
(integer_negation "-" @operator)
; Punctuation
[
"("