diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2026-02-18 19:47:57 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-02-18 19:53:54 +0100 |
| commit | ecdae44baefeffceade8b0c752d80ececad28e76 (patch) | |
| tree | 5b427170bd241ae8628342b0e504bcb3149e0184 /runtime/queries | |
| parent | fix(glimmer_typescript): inherit typescript indents (diff) | |
| download | nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar.gz nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar.bz2 nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar.lz nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar.xz nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.tar.zst nvim-treesitter-ecdae44baefeffceade8b0c752d80ececad28e76.zip | |
feat(kotlin)!: update parser and queries
Breaking change: removed nodes `"!in"` and `"!is"`.
Diffstat (limited to 'runtime/queries')
| -rw-r--r-- | runtime/queries/kotlin/highlights.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/queries/kotlin/highlights.scm b/runtime/queries/kotlin/highlights.scm index 8eda6ef61..a45ab23d5 100644 --- a/runtime/queries/kotlin/highlights.scm +++ b/runtime/queries/kotlin/highlights.scm @@ -153,7 +153,7 @@ "charArrayOf" "emptyArray" "mapOf" "setOf" "listOf" "emptyMap" "emptySet" "emptyList" "mutableMapOf" "mutableSetOf" "mutableListOf" "print" "println" "error" "TODO" "run" "runCatching" "repeat" "lazy" "lazyOf" "enumValues" "enumValueOf" "assert" "check" - "checkNotNull" "require" "requireNotNull" "with" "suspend" "synchronized")) + "checkNotNull" "require" "requireNotNull" "with" "synchronized")) ; Literals [ @@ -343,12 +343,11 @@ "?:" "!!" "is" - "!is" "in" - "!in" "as" "as?" ".." + "..<" "->" ] @operator |
