@surrealdb/lezer 1.0.0-beta.17 → 1.0.0-beta.18

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/dist/index.cjs CHANGED
@@ -477,6 +477,8 @@ function skipObjKey(input, off) {
477
477
  escaped = next === 92; /* '\\' */
478
478
  }
479
479
  }
480
+
481
+ return null;
480
482
  }
481
483
 
482
484
  const objectToken = new lr.ExternalTokenizer(input => {
package/dist/index.js CHANGED
@@ -473,6 +473,8 @@ function skipObjKey(input, off) {
473
473
  escaped = next === 92; /* '\\' */
474
474
  }
475
475
  }
476
+
477
+ return null;
476
478
  }
477
479
 
478
480
  const objectToken = new ExternalTokenizer(input => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@surrealdb/lezer",
3
- "version": "1.0.0-beta.17",
3
+ "version": "1.0.0-beta.18",
4
4
  "author": "SurrealDB",
5
5
  "description": "SurrealQL grammar for Lezer",
6
6
  "type": "module",
package/src/tokens.js CHANGED
@@ -477,6 +477,8 @@ function skipObjKey(input, off) {
477
477
  escaped = next === 92; /* '\\' */
478
478
  }
479
479
  }
480
+
481
+ return null;
480
482
  }
481
483
 
482
484
  export const objectToken = new ExternalTokenizer(input => {