@mojir/lits 1.2.2-alpha.4 → 1.2.2-alpha.5

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.
@@ -14,3 +14,4 @@ export { apiReference, isDatatypeReference, isFunctionReference, isNormalExpress
14
14
  export type { Argument, CommonReference, DatatypeReference, FunctionReference, Reference, ShorthandReference } from '../reference';
15
15
  export type { ApiName, FunctionName, ShorthandName, DatatypeName } from '../reference/api';
16
16
  export { isApiName, isDataType } from '../reference/api';
17
+ export { nameCharacterClass } from './tokenizer/tokenizers';
@@ -1,5 +1,5 @@
1
1
  import type { Tokenizer } from './interface';
2
- export declare const nameCharacters = "[\\w@%^?=!$<>+*/-]";
2
+ export declare const nameCharacterClass = "[\\w@%^?=!$<>+*/-]";
3
3
  export declare const tokenizeNewLine: Tokenizer;
4
4
  export declare const tokenizeComment: Tokenizer;
5
5
  export declare const skipWhiteSpace: Tokenizer;
@@ -2827,7 +2827,7 @@ var mathNormalExpression = {
2827
2827
  },
2828
2828
  };
2829
2829
 
2830
- var version = "1.2.2-alpha.4";
2830
+ var version = "1.2.2-alpha.5";
2831
2831
 
2832
2832
  var uuidTemplate = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx';
2833
2833
  var xyRegexp = /[xy]/g;
@@ -7445,8 +7445,8 @@ function getSugar() {
7445
7445
  }
7446
7446
 
7447
7447
  var NO_MATCH = [0, undefined];
7448
- var nameCharacters = '[\\w@%^?=!$<>+*/-]';
7449
- var nameRegExp = new RegExp(nameCharacters);
7448
+ var nameCharacterClass = '[\\w@%^?=!$<>+*/-]';
7449
+ var nameRegExp = new RegExp(nameCharacterClass);
7450
7450
  var whitespaceRegExp = /\s|,/;
7451
7451
  var newLineRegExp = /\n/;
7452
7452
  var tokenizeNewLine = function (input, current, debugData) {