clarity-pattern-parser 10.1.6 → 10.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarity-pattern-parser",
3
- "version": "10.1.6",
3
+ "version": "10.1.7",
4
4
  "description": "Parsing Library for Typescript and Javascript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -62,12 +62,6 @@ export class Grammar {
62
62
  this._parseContext = new ParseContext(this._params);
63
63
  this._autoComplete = new AutoComplete(grammar, {
64
64
  greedyPatternNames: ["spaces", "optional-spaces", "whitespace", "new-line"],
65
- customTokens: {
66
- "regex-literal": ["[Regular Expression]"],
67
- "literal": ["[String]"],
68
- "name": ["[Pattern Name]"],
69
- "pattern-name": ["[Pattern Name]"]
70
- }
71
65
  });
72
66
  }
73
67