Ron Panduwana
d10308528d
fix: handle more cases of editing subtrees that depend on column values
...
(cherry picked from commit a83b893016 )
2024-09-29 20:37:24 -04:00
Amaan Qureshi
77794c558f
fix: correct test name parsing when the prior test has equal signs
...
(cherry picked from commit 2fffe036e0 )
2024-09-29 19:58:38 -04:00
Amaan Qureshi
865f6595e7
fix(lib): correct descendant-for-range behavior with zero-width tokens
...
(cherry picked from commit 0c43988a5e )
2024-09-27 09:21:17 -04:00
Amaan Qureshi
7561e813b8
fix: disallow empty string literals in rules
...
(cherry picked from commit 86d3a5313d )
2024-09-24 15:41:03 -04:00
Amaan Qureshi
edd7f257df
fix: do not generate spurious files if the grammar path is not the default path
...
(cherry picked from commit 1708a295a8 )
2024-09-24 14:37:30 -04:00
Will Lillis
83509ad4d7
fix(fuzz): skip tests marked with :skip & don't report errors on tests marked with :error
...
(cherry picked from commit 99dbbbcbe9 )
2024-09-22 03:57:37 -04:00
Amaan Qureshi
8e1dbb4617
fix: properly handle utf8 code points for highlight and tag assertions
...
(cherry picked from commit 6f050f0da5 )
2024-09-22 01:47:47 -04:00
Amaan Qureshi
a6b248c1ad
fix(lib): peek at the next sibling when iterating to find the child that contains a given descendant
...
This issue shows up when we have a zero-width token that is the target
descendant node, previously the previous sibling would be returned as
the child that contains the descendant, which is incorrect.
(cherry picked from commit 0a85744eba )
2024-09-17 17:22:13 +02:00
Hanlu
b4d4251427
fix: correct comment quote
...
(cherry picked from commit ff813a311b )
2024-09-17 17:21:54 +02:00
ObserverOfTime
7688c6fa2f
chore(bindings): update rust lib docs
...
(cherry picked from commit 6e19fccf39 )
2024-09-17 17:21:34 +02:00
Dave Abrahams
28b71cea27
fix(generate): remove excludes in Package.swift
...
(cherry picked from commit 112acd5b93 )
2024-09-17 17:21:26 +02:00
Will Lillis
d5a1266b25
fix(cli): remove duplicate short options from fuzz command ( #3635 )
...
- Remove short option from fuzz command edits option
- Remove short option from fuzz command iterations option
(cherry picked from commit b0e8e50a19 )
2024-09-15 11:32:11 +03:00
Amaan Qureshi
831c144d9b
fix(generate): do not generate large character sets for unused variables
...
(cherry picked from commit d8ab779df4 )
2024-09-08 15:55:01 -04:00
Jinser Kafka
5f51550a8c
fix(cli): keep skipped tests unchanged in the test/corpus
...
(cherry picked from commit fd190f1d9d )
2024-09-07 18:56:21 -04:00
Amaan Qureshi
dce9bedc48
fix(generate): add tree-sitter to the dev-dependencies of the Cargo.toml
...
(cherry picked from commit 4d3d1f0df2 )
2024-09-07 17:53:12 -04:00
Amaan Qureshi
22b38a083c
fix(generate): disallow inline variables referencing themselves
...
This fixes an infinite loop bug
(cherry picked from commit 53cc93c267 )
2024-09-01 16:22:23 -04:00
Amaan Qureshi
f312e2c5f5
fix(test): retain attributes when running test -u
...
(cherry picked from commit 272ebf77b9 )
2024-09-01 16:22:01 -04:00
Amaan Qureshi
9a7048bf14
fix(test): exit with an error if a test marked with :error has no error
...
(cherry picked from commit 0a486d508f )
2024-09-01 16:22:01 -04:00
Amaan Qureshi
1a3f486059
fix(lib): correct extra node creation from non-zero root-alias cursors
...
(cherry picked from commit ee06325f67 )
2024-09-01 16:21:33 -04:00
Amaan Qureshi
a9455a2cc7
feat(bindings): bump go-tree-sitter version
...
(cherry picked from commit d0125ef387 )
2024-09-01 16:21:25 -04:00
Amaan Qureshi
366ffc9b3e
feat(generate): bump tree-sitter dev dependency to 0.23
...
(cherry picked from commit b5a91a4a85 )
2024-09-01 16:21:16 -04:00
Amaan Qureshi
8c8271875a
fix(cli): remove conflicting short flags in the fuzz subcommand
...
(cherry picked from commit 278526ef75 )
2024-09-01 16:21:08 -04:00
Amaan Qureshi
5ff5ab3a42
fix(generate): remove necessary files from gitignore template
...
(cherry picked from commit 253a112dd4 )
2024-09-01 16:19:09 -04:00
Amaan Qureshi
fc4d7bd995
fix(cli): dedup preceding_auxiliary_symbols
2024-08-26 09:03:08 -04:00
ObserverOfTime
ff8b50caa6
build(bindings): use language version in soname
2024-08-25 15:03:13 -04:00
Amaan Qureshi
6ef76858c0
fix!: revert interning of a sequence or choice of a single rule
...
This reverts commit 252e2a4bc0
2024-08-24 19:43:04 -04:00
Amaan Qureshi
973b01071e
fix(go): update parser name in binding files, add to docs
2024-08-24 19:24:06 -04:00
Amaan Qureshi
2150c91114
fix(bindings): update go bindings
2024-08-23 23:51:04 -04:00
Ryan Patterson
b5e4ef6d9a
clone wasm store engine ( #3542 )
...
This resolves https://github.com/tree-sitter/tree-sitter/issues/3454 .
This brings the usage of wasmtime::Engine in line with how wasmtime
intends it to be used. All wasmtime functions that receive an Engine
always receive an `&Engine`, never an owned `Engine`. They are always
responsible for cloning the reference if they need it.
This brings the usage of wasmtime::Engine in line with how TSParser
treats TSLanguages: when setting a language to the parser, the parser is
responsible for cloning the reference to the TSLanguage. It is
counterintuitive for TSParser to have different behavior when receiving
wasmtime_engine_t.
C API users also expect this behavior, see "Memory Management"
[here](https://docs.wasmtime.dev/c-api/wasm_8h.html ). Talking about the
C API: without this change, failing to clone the `wasmtime_engine_t`
(which, again, is never something API users need to do in wasmtime) and
then reusing the engine in multiple TSLanguages results in a use after
free. With this change, failing to call `wasm_engine_delete` on your
owned Engine results in a memory leak. Memory leaks are safer than
use-after-free.
2024-08-22 08:01:37 -07:00
ObserverOfTime
f459c3d872
feat(bindings)!: use capsules in python
2024-08-20 12:33:11 +03:00
Amaan Qureshi
6dd459b4ab
fix(lib): an empty root node should not precede an empty range
...
The problem is, given an empty file, the root node of this file spans 0
bytes. As such, the logic for determining whether or not the node
precedes the range fails, and is true when it should be false.
2024-08-17 17:05:26 -04:00
Ron Panduwana
2bb20fe2fe
feat: allow external scanners to use the logger
...
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
2024-08-17 14:46:28 -04:00
Amaan Qureshi
fec6c77da8
fix(generate): rename cargo.toml template
...
This fixes issues with vendoring on case-insensitive file systems
2024-08-17 01:39:52 -04:00
ObserverOfTime
2eeeed0f2a
fix(make): fail properly on Windows
2024-08-17 00:51:27 -04:00
buckynbrocko
7583d394b4
feat(cli): add --show-fields flag to test command ( #3502 )
2024-08-03 21:54:18 +03:00
Ryan Patterson
779566f588
Reset language when resetting wasm store ( #3495 )
...
* Reset language when resetting wasm store
* test behavior of language copying
2024-07-31 10:30:58 -07:00
ObserverOfTime
3950dddfde
fix(rust): fix new clippy warnings
2024-07-28 10:12:32 +03:00
Amaan Qureshi
25c7189180
feat(lib): add ts_query_end_byte_for_pattern
2024-07-07 20:29:09 -04:00
Amaan Qureshi
a59a530049
fix(dsl): improve error message when a rule function returns undefined
2024-07-05 19:11:01 -04:00
Quentin LE DILAVREC
9610a84600
fix(lib): restrict pattern_map optimization when a wildcard step has an immediate first child
...
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
2024-07-05 03:35:24 -04:00
Amaan Qureshi
6ec478c1e9
fix: do not "absorb" rules that consist of a single terminal if the rule is hidden
2024-06-21 20:20:02 -04:00
Amaan Qureshi
252e2a4bc0
fix: intern a sequence or choice of a single element the same as the element itself
2024-06-21 20:20:02 -04:00
Amaan Qureshi
a73191bf0e
fix: better error when a supertype rule is invalid
2024-06-03 06:35:27 -04:00
Amaan Qureshi
e553578696
feat: add fuzz subcommand
2024-05-30 23:00:45 -04:00
Amaan Qureshi
fc146ad510
refactor: remove difference dependency
2024-05-25 23:04:28 -04:00
Amaan Qureshi
c440f2a7c6
refactor: remove ansi_term dependency
2024-05-25 21:09:28 -04:00
Max Brunsfeld
38137c71b2
feat!: introduce tree-sitter-language crate for grammar crates to depend on
...
Co-authored-by: Conrad <conrad@zed.dev>
Co-authored-by: Marshall <marshall@zed.dev>
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
2024-05-24 21:54:07 -04:00
ObserverOfTime
04b9eb5700
feat(bindings): update npm scripts
2024-05-24 17:35:12 -04:00
ObserverOfTime
629395fd58
feat(bindings): add node, python, swift tests
2024-05-24 16:55:05 -04:00
ObserverOfTime
055d0cbd34
feat(dsl)!: support other JS runtimes
2024-05-24 16:53:33 -04:00