tree-sitter-zsh 0.37.0 → 0.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/tree-sitter-zsh.node +0 -0
- package/prebuilds/darwin-x64/tree-sitter-zsh.node +0 -0
- package/prebuilds/linux-arm64/tree-sitter-zsh.node +0 -0
- package/prebuilds/linux-x64/tree-sitter-zsh.node +0 -0
- package/prebuilds/win32-arm64/tree-sitter-zsh.node +0 -0
- package/prebuilds/win32-x64/tree-sitter-zsh.node +0 -0
- package/src/scanner.c +0 -2
- package/tree-sitter-zsh.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# tree-sitter-zsh
|
|
2
2
|
|
|
3
|
-
[![CI]
|
|
3
|
+
[](https://github.com/georgeharker/tree-sitter-zsh/actions/workflows/ci.yml)
|
|
4
4
|
[![discord][discord]](https://discord.gg/w7nTvsVJhm)
|
|
5
5
|
[![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org)
|
|
6
6
|
[![crates][crates]](https://crates.io/crates/tree-sitter-zsh)
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/scanner.c
CHANGED
|
@@ -1776,7 +1776,6 @@ regex:
|
|
|
1776
1776
|
if ((valid_symbols[REGEX] || valid_symbols[REGEX_NO_SLASH] ||
|
|
1777
1777
|
valid_symbols[REGEX_NO_SPACE]) &&
|
|
1778
1778
|
!in_error_recovery(valid_symbols)) {
|
|
1779
|
-
fprintf(stderr, "REGEX scan\n");
|
|
1780
1779
|
if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SPACE]) {
|
|
1781
1780
|
while (iswspace(lexer->lookahead)) {
|
|
1782
1781
|
skip(lexer);
|
|
@@ -1966,7 +1965,6 @@ regex:
|
|
|
1966
1965
|
return false;
|
|
1967
1966
|
}
|
|
1968
1967
|
|
|
1969
|
-
fprintf(stderr, "GOT REGEX %d\n", state.advanced_once);
|
|
1970
1968
|
return true;
|
|
1971
1969
|
}
|
|
1972
1970
|
}
|
|
Binary file
|