tree-sitter-objectscript 1.7.4 → 1.7.6
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 +79 -24
- package/common/scanner.h +17 -0
- package/core/grammar.js +1 -0
- package/core/src/parser.c +376 -365
- package/expr/src/parser.c +1 -1
- package/objectscript/src/parser.c +608 -597
- package/objectscript/src/scanner.c +1 -0
- package/objectscript_routine/grammar.js +1 -1
- package/objectscript_routine/src/parser.c +63529 -63529
- package/objectscript_routine/src/scanner.c +36 -47
- 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/queries/studio-highlights.scm +13 -0
- package/udl/src/parser.c +604 -593
package/expr/src/parser.c
CHANGED
|
@@ -34600,7 +34600,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_expr(void) {
|
|
|
34600
34600
|
.metadata = {
|
|
34601
34601
|
.major_version = 1,
|
|
34602
34602
|
.minor_version = 7,
|
|
34603
|
-
.patch_version =
|
|
34603
|
+
.patch_version = 6,
|
|
34604
34604
|
},
|
|
34605
34605
|
};
|
|
34606
34606
|
return &language;
|