(t)
| 32256 | } |
| 32257 | } |
| 32258 | function parseOptional(t) { |
| 32259 | if (token() === t) { |
| 32260 | nextToken(); |
| 32261 | return true; |
| 32262 | } |
| 32263 | return false; |
| 32264 | } |
| 32265 | function parseOptionalToken(t) { |
| 32266 | if (token() === t) { |
| 32267 | return parseTokenNode(); |
no test coverage detected
searching dependent graphs…