tree-sitter-objectscript 1.9.3 → 1.9.4
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/common/scanner.h +4 -0
- package/expr/src/parser.c +1 -1
- package/objectscript/src/parser.c +1 -1
- package/objectscript_routine/src/parser.c +1 -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/common/scanner.h
CHANGED
|
@@ -253,6 +253,10 @@ static bool is_statement_or_class_keyword(const int32_t *text, uint32_t len) {
|
|
|
253
253
|
if (ascii_upper_eq(text, len, "ZDELETE")) return true;
|
|
254
254
|
if (ascii_upper_eq(text, len, "ZERASE")) return true;
|
|
255
255
|
if (ascii_upper_eq(text, len, "ZETRAP")) return true;
|
|
256
|
+
if (ascii_upper_eq(text, len, "ZEDIT")) return true;
|
|
257
|
+
if (ascii_upper_eq(text, len, "ZED")) return true;
|
|
258
|
+
if (ascii_upper_eq(text, len, "ZE")) return true;
|
|
259
|
+
if (ascii_upper_eq(text, len, "ZEDI")) return true;
|
|
256
260
|
if (ascii_upper_eq(text, len, "ZFILE")) return true;
|
|
257
261
|
if (ascii_upper_eq(text, len, "ZGO")) return true;
|
|
258
262
|
if (ascii_upper_eq(text, len, "ZHTRAP")) return true;
|
package/expr/src/parser.c
CHANGED
|
@@ -30555,7 +30555,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_expr(void) {
|
|
|
30555
30555
|
.metadata = {
|
|
30556
30556
|
.major_version = 1,
|
|
30557
30557
|
.minor_version = 9,
|
|
30558
|
-
.patch_version =
|
|
30558
|
+
.patch_version = 4,
|
|
30559
30559
|
},
|
|
30560
30560
|
};
|
|
30561
30561
|
return &language;
|
|
@@ -1063191,7 +1063191,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript(void) {
|
|
|
1063191
1063191
|
.metadata = {
|
|
1063192
1063192
|
.major_version = 1,
|
|
1063193
1063193
|
.minor_version = 9,
|
|
1063194
|
-
.patch_version =
|
|
1063194
|
+
.patch_version = 4,
|
|
1063195
1063195
|
},
|
|
1063196
1063196
|
};
|
|
1063197
1063197
|
return &language;
|
|
@@ -1004653,7 +1004653,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_routine(void) {
|
|
|
1004653
1004653
|
.metadata = {
|
|
1004654
1004654
|
.major_version = 1,
|
|
1004655
1004655
|
.minor_version = 9,
|
|
1004656
|
-
.patch_version =
|
|
1004656
|
+
.patch_version = 4,
|
|
1004657
1004657
|
},
|
|
1004658
1004658
|
};
|
|
1004659
1004659
|
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
|
@@ -1027893,7 +1027893,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_udl(void) {
|
|
|
1027893
1027893
|
.metadata = {
|
|
1027894
1027894
|
.major_version = 1,
|
|
1027895
1027895
|
.minor_version = 9,
|
|
1027896
|
-
.patch_version =
|
|
1027896
|
+
.patch_version = 4,
|
|
1027897
1027897
|
},
|
|
1027898
1027898
|
};
|
|
1027899
1027899
|
return &language;
|