spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← All files
name: src/Parser/Symbols.ts
-rw-r--r--
634
 1enum Symbol {
 2  Accept = 0,
 3  End = 1,
 4  Error = 2,
 5  Expressions = 3,
 6  Expression = 4,
 7  EOF = 5,
 8  VariableSeq = 6,
 9  Number = 9,
10  String = 10,
11  Ampersand = 11,
12  Equals = 12,
13  Plus = 13,
14  LeftParen = 14,
15  RightParen = 15,
16  LessThan = 16,
17  GreaterThan = 17,
18  Minus = 19,
19  Asterisk = 20,
20  Divide = 21,
21  Carrot = 22,
22  Function = 23,
23  ExpressionSeq = 24,
24  Cell = 25,
25  FixedCell = 26,
26  Colon = 27,
27  CellUpper = 28,
28  Array = 29,
29  Semicolon = 30,
30  Comma = 31,
31  Variable = 32,
32  Decimal = 33,
33  NumberUpper = 34,
34  Percent = 35,
35  FullError = 36,
36  ExclamationPoint = 37,
37  ReflexiveReduce = 38
38}
39
40export {
41  Symbol
42}