aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorMichael Davis2022-05-17 19:31:39 +0000
committerBlaž Hrastnik2022-05-25 12:26:26 +0000
commit45dd54082e4dde74b7d344c6bb8a4ff2a09e627e (patch)
tree8916cd51427344aef34dcd30d16b048af42b680c /languages.toml
parent10463fe32c789f49c65d53c9d22621e415a854ea (diff)
update Gleam grammar and queries
With respect to the queries: The locals scope for functions was not large enough, so a function's parameter could outlive the function body. To fix it, we just widen the scope to the `function` node. See also https://github.com/gleam-lang/tree-sitter-gleam/issues/25 With respect to the parser: An external scanner has been added that fixes the parsing of strings. Previously, a comment inside a string would act like a comment rather than string contents. See also https://github.com/gleam-lang/tree-sitter-gleam/issues/14#issuecomment-1129263640 A new constructor node has been added as well which makes type highlighting more fine grained. See also https://github.com/gleam-lang/tree-sitter-gleam/pull/29
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml
index 16e78a9b..b1984fb5 100644
--- a/languages.toml
+++ b/languages.toml
@@ -1127,7 +1127,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "gleam"
-source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "7159ce961592192b0e7cdf88782cda0fdf41a4cb" }
+source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3" }
[[language]]
name = "ron"