yini-parser 1.0.0-alpha.4 → 1.0.0-alpha.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.
@@ -7,47 +7,46 @@ export default class YiniParser extends Parser {
7
7
  static readonly SS = 4;
8
8
  static readonly EUR = 5;
9
9
  static readonly CARET = 6;
10
- static readonly TILDE = 7;
11
- static readonly GT = 8;
12
- static readonly LT = 9;
13
- static readonly EQ = 10;
14
- static readonly HASH = 11;
15
- static readonly COMMA = 12;
16
- static readonly COLON = 13;
17
- static readonly OB = 14;
18
- static readonly CB = 15;
19
- static readonly OC = 16;
20
- static readonly CC = 17;
21
- static readonly PLUS = 18;
22
- static readonly DOLLAR = 19;
23
- static readonly PC = 20;
24
- static readonly AT = 21;
25
- static readonly SEMICOLON = 22;
26
- static readonly BOOLEAN_FALSE = 23;
27
- static readonly BOOLEAN_TRUE = 24;
28
- static readonly NULL = 25;
29
- static readonly EMPTY_OBJECT = 26;
30
- static readonly EMPTY_LIST = 27;
31
- static readonly SHEBANG = 28;
32
- static readonly NUMBER = 29;
33
- static readonly KEY = 30;
34
- static readonly IDENT = 31;
35
- static readonly IDENT_BACKTICKED = 32;
36
- static readonly STRING = 33;
37
- static readonly TRIPLE_QUOTED_STRING = 34;
38
- static readonly SINGLE_OR_DOUBLE = 35;
39
- static readonly R_AND_C_STRING = 36;
40
- static readonly HYPER_STRING = 37;
41
- static readonly ESC_SEQ = 38;
42
- static readonly ESC_SEQ_BASE = 39;
43
- static readonly NL = 40;
44
- static readonly SINGLE_NL = 41;
45
- static readonly WS = 42;
46
- static readonly BLOCK_COMMENT = 43;
47
- static readonly COMMENT = 44;
48
- static readonly LINE_COMMENT = 45;
49
- static readonly INLINE_COMMENT = 46;
50
- static readonly IDENT_INVALID = 47;
10
+ static readonly GT = 7;
11
+ static readonly LT = 8;
12
+ static readonly EQ = 9;
13
+ static readonly HASH = 10;
14
+ static readonly COMMA = 11;
15
+ static readonly COLON = 12;
16
+ static readonly OB = 13;
17
+ static readonly CB = 14;
18
+ static readonly OC = 15;
19
+ static readonly CC = 16;
20
+ static readonly PLUS = 17;
21
+ static readonly DOLLAR = 18;
22
+ static readonly PC = 19;
23
+ static readonly AT = 20;
24
+ static readonly SEMICOLON = 21;
25
+ static readonly BOOLEAN_FALSE = 22;
26
+ static readonly BOOLEAN_TRUE = 23;
27
+ static readonly NULL = 24;
28
+ static readonly EMPTY_OBJECT = 25;
29
+ static readonly EMPTY_LIST = 26;
30
+ static readonly SHEBANG = 27;
31
+ static readonly NUMBER = 28;
32
+ static readonly KEY = 29;
33
+ static readonly IDENT = 30;
34
+ static readonly IDENT_BACKTICKED = 31;
35
+ static readonly STRING = 32;
36
+ static readonly TRIPLE_QUOTED_STRING = 33;
37
+ static readonly SINGLE_OR_DOUBLE = 34;
38
+ static readonly R_AND_C_STRING = 35;
39
+ static readonly HYPER_STRING = 36;
40
+ static readonly ESC_SEQ = 37;
41
+ static readonly ESC_SEQ_BASE = 38;
42
+ static readonly NL = 39;
43
+ static readonly SINGLE_NL = 40;
44
+ static readonly WS = 41;
45
+ static readonly BLOCK_COMMENT = 42;
46
+ static readonly COMMENT = 43;
47
+ static readonly LINE_COMMENT = 44;
48
+ static readonly INLINE_COMMENT = 45;
49
+ static readonly IDENT_INVALID = 46;
51
50
  static readonly EOF: number;
52
51
  static readonly RULE_yini = 0;
53
52
  static readonly RULE_section = 1;