tree-sitter-objectscript 1.7.0 → 1.7.1
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 +5 -2
- package/common/scanner.h +0 -1
- package/core/src/parser.c +1 -1
- package/expr/src/parser.c +1 -1
- package/objectscript/src/parser.c +1 -1
- package/objectscript_routine/src/parser.c +1 -1
- package/objectscript_routine/src/scanner.c +0 -1
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/darwin-x64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/linux-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/linux-x64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/win32-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/win32-x64/tree-sitter-objectscript.node +0 -0
- package/tree-sitter.json +1 -1
- package/udl/src/parser.c +1 -1
- package/udl/src/scanner.c +0 -1
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[![CI][ci]](https://github.com/intersystems/tree-sitter-objectscript/actions/workflows/ci.yml)
|
|
4
4
|
[![npm][npm]](https://www.npmjs.com/package/tree-sitter-objectscript)
|
|
5
5
|
[![crates-udl][crates-udl]](https://crates.io/crates/tree-sitter-objectscript)
|
|
6
|
+
[![crates-routine][crates-routine]](https://crates.io/crates/tree-sitter-objectscript-routine)
|
|
6
7
|
[![crates-playground][crates-playground]](https://crates.io/crates/tree-sitter-objectscript-playground)
|
|
7
8
|
[![pypi][pypi]](https://pypi.org/project/tree-sitter-objectscript/)
|
|
8
9
|
|
|
@@ -27,7 +28,8 @@ Grammar extension graph:
|
|
|
27
28
|
- npm: `tree-sitter-objectscript`
|
|
28
29
|
- PyPI: `tree-sitter-objectscript` (ships `tree_sitter_objectscript`, `tree_sitter_objectscript_udl`, and `tree_sitter_objectscript_routine`)
|
|
29
30
|
- Rust crates:
|
|
30
|
-
- `tree-sitter-objectscript` (UDL
|
|
31
|
+
- `tree-sitter-objectscript` (UDL grammar)
|
|
32
|
+
- `tree-sitter-objectscript-routine` (routine grammar)
|
|
31
33
|
- `tree-sitter-objectscript-playground` (playground grammar)
|
|
32
34
|
|
|
33
35
|
## Bindings
|
|
@@ -38,7 +40,7 @@ Language bindings are available under `bindings/`:
|
|
|
38
40
|
- Go: `bindings/go`
|
|
39
41
|
- Node.js: `bindings/node`
|
|
40
42
|
- Python: `bindings/python`
|
|
41
|
-
- Rust: `bindings/rust` and `bindings/rust-playground`
|
|
43
|
+
- Rust: `bindings/rust`, `bindings/rust-routine`, and `bindings/rust-playground`
|
|
42
44
|
- Swift: `bindings/swift`
|
|
43
45
|
|
|
44
46
|
Quick binding checks from repo root:
|
|
@@ -127,5 +129,6 @@ MIT. See [LICENSE](LICENSE).
|
|
|
127
129
|
[ci]: https://img.shields.io/github/actions/workflow/status/intersystems/tree-sitter-objectscript/ci.yml?logo=github&label=CI
|
|
128
130
|
[npm]: https://img.shields.io/npm/v/tree-sitter-objectscript?logo=npm
|
|
129
131
|
[crates-udl]: https://img.shields.io/crates/v/tree-sitter-objectscript?logo=rust
|
|
132
|
+
[crates-routine]: https://img.shields.io/crates/v/tree-sitter-objectscript-routine?logo=rust
|
|
130
133
|
[crates-playground]: https://img.shields.io/crates/v/tree-sitter-objectscript-playground?logo=rust
|
|
131
134
|
[pypi]: https://img.shields.io/pypi/v/tree-sitter-objectscript?logo=pypi&logoColor=ffd242
|
package/common/scanner.h
CHANGED
package/core/src/parser.c
CHANGED
|
@@ -2004824,7 +2004824,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_core(void) {
|
|
|
2004824
2004824
|
.metadata = {
|
|
2004825
2004825
|
.major_version = 1,
|
|
2004826
2004826
|
.minor_version = 7,
|
|
2004827
|
-
.patch_version =
|
|
2004827
|
+
.patch_version = 1,
|
|
2004828
2004828
|
},
|
|
2004829
2004829
|
};
|
|
2004830
2004830
|
return &language;
|
package/expr/src/parser.c
CHANGED
|
@@ -19637,7 +19637,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_expr(void) {
|
|
|
19637
19637
|
.metadata = {
|
|
19638
19638
|
.major_version = 1,
|
|
19639
19639
|
.minor_version = 7,
|
|
19640
|
-
.patch_version =
|
|
19640
|
+
.patch_version = 1,
|
|
19641
19641
|
},
|
|
19642
19642
|
};
|
|
19643
19643
|
return &language;
|
|
@@ -2186977,7 +2186977,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript(void) {
|
|
|
2186977
2186977
|
.metadata = {
|
|
2186978
2186978
|
.major_version = 1,
|
|
2186979
2186979
|
.minor_version = 7,
|
|
2186980
|
-
.patch_version =
|
|
2186980
|
+
.patch_version = 1,
|
|
2186981
2186981
|
},
|
|
2186982
2186982
|
};
|
|
2186983
2186983
|
return &language;
|
|
@@ -2572440,7 +2572440,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_routine(void) {
|
|
|
2572440
2572440
|
.metadata = {
|
|
2572441
2572441
|
.major_version = 1,
|
|
2572442
2572442
|
.minor_version = 7,
|
|
2572443
|
-
.patch_version =
|
|
2572443
|
+
.patch_version = 1,
|
|
2572444
2572444
|
},
|
|
2572445
2572445
|
};
|
|
2572446
2572446
|
return &language;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/tree-sitter.json
CHANGED
package/udl/src/parser.c
CHANGED
|
@@ -2121213,7 +2121213,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_udl(void) {
|
|
|
2121213
2121213
|
.metadata = {
|
|
2121214
2121214
|
.major_version = 1,
|
|
2121215
2121215
|
.minor_version = 7,
|
|
2121216
|
-
.patch_version =
|
|
2121216
|
+
.patch_version = 1,
|
|
2121217
2121217
|
},
|
|
2121218
2121218
|
};
|
|
2121219
2121219
|
return &language;
|