(parser)
| 1459 | return root; |
| 1460 | } |
| 1461 | parsePrimaryExpression(parser) { |
| 1462 | var leaf = parser.parseElement("leaf"); |
| 1463 | if (leaf) { |
| 1464 | return this.parseElement("indirectExpression", parser, leaf); |
| 1465 | } |
| 1466 | parser.raiseError("Unexpected value: " + parser.currentToken().value); |
| 1467 | } |
| 1468 | parseHyperscriptProgram(parser) { |
| 1469 | var features = []; |
| 1470 | if (parser.hasMore()) { |
nothing calls this directly
no test coverage detected