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 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 = 3,
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 = 3,
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 = 3,
1004656
+ .patch_version = 4,
1004657
1004657
  },
1004658
1004658
  };
1004659
1004659
  return &language;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tree-sitter-objectscript",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "Tree Sitter Grammar for InterSystems ObjectScript",
5
5
  "scripts": {
6
6
  "install": "node-gyp-build",
package/tree-sitter.json CHANGED
@@ -56,7 +56,7 @@
56
56
  }
57
57
  ],
58
58
  "metadata": {
59
- "version": "1.9.3",
59
+ "version": "1.9.4",
60
60
  "license": "MIT",
61
61
  "description": "ObjectScript grammars for tree-sitter",
62
62
  "namespace": "io.github.treesitter.objectscript",
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 = 3,
1027896
+ .patch_version = 4,
1027897
1027897
  },
1027898
1027898
  };
1027899
1027899
  return &language;