tree-sitter-objectscript 1.7.5 → 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/common/scanner.h CHANGED
@@ -1145,6 +1145,10 @@ else if (valid_symbols[_ASSERT_NO_SPACE_BETWEEN_RULES]) {
1145
1145
  return true;
1146
1146
  }
1147
1147
 
1148
+ if (ascii_upper_eq(ident, len, "IRIS")) {
1149
+ return false;
1150
+ }
1151
+
1148
1152
  if (!scanner->column1_statement_mode) {
1149
1153
  lexer->result_symbol = TAG;
1150
1154
  scanner->terminated_newline = false;
package/core/src/parser.c CHANGED
@@ -1980137,7 +1980137,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_core(void) {
1980137
1980137
  .metadata = {
1980138
1980138
  .major_version = 1,
1980139
1980139
  .minor_version = 7,
1980140
- .patch_version = 5,
1980140
+ .patch_version = 6,
1980141
1980141
  },
1980142
1980142
  };
1980143
1980143
  return &language;
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 = 5,
34603
+ .patch_version = 6,
34604
34604
  },
34605
34605
  };
34606
34606
  return &language;
@@ -2158906,7 +2158906,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript(void) {
2158906
2158906
  .metadata = {
2158907
2158907
  .major_version = 1,
2158908
2158908
  .minor_version = 7,
2158909
- .patch_version = 5,
2158909
+ .patch_version = 6,
2158910
2158910
  },
2158911
2158911
  };
2158912
2158912
  return &language;
@@ -2075371,7 +2075371,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_routine(void) {
2075371
2075371
  .metadata = {
2075372
2075372
  .major_version = 1,
2075373
2075373
  .minor_version = 7,
2075374
- .patch_version = 5,
2075374
+ .patch_version = 6,
2075375
2075375
  },
2075376
2075376
  };
2075377
2075377
  return &language;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tree-sitter-objectscript",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "Tree Sitter Grammar for InterSystems ObjectScript",
5
5
  "scripts": {
6
6
  "install": "node-gyp-build",
package/tree-sitter.json CHANGED
@@ -97,7 +97,7 @@
97
97
  }
98
98
  ],
99
99
  "metadata": {
100
- "version": "1.7.5",
100
+ "version": "1.7.6",
101
101
  "license": "MIT",
102
102
  "description": "ObjectScript grammars for tree-sitter",
103
103
  "namespace": "io.github.treesitter.objectscript",
package/udl/src/parser.c CHANGED
@@ -2094369,7 +2094369,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript_udl(void) {
2094369
2094369
  .metadata = {
2094370
2094370
  .major_version = 1,
2094371
2094371
  .minor_version = 7,
2094372
- .patch_version = 5,
2094372
+ .patch_version = 6,
2094373
2094373
  },
2094374
2094374
  };
2094375
2094375
  return &language;