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 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;