Attempt to parse any token
()
| 113 | |
| 114 | /** Attempt to parse any token */ |
| 115 | private value(): Token | undefined { |
| 116 | return this.number() || this.ident() || this.string() || this.comma(); |
| 117 | } |
| 118 | |
| 119 | /** Run the full parse loop */ |
| 120 | public parse(): Token[] { |