tree-sitter-objectscript 1.9.2 → 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/core/src/parser.c +12307 -12292
- package/expr/src/parser.c +1 -1
- package/objectscript/src/parser.c +16457 -16442
- package/objectscript_routine/src/parser.c +14078 -14063
- 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 +9316 -9301
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;
|