(parser)
| 1468 | return root; |
| 1469 | } |
| 1470 | parsePrimaryExpression(parser) { |
| 1471 | var leaf = parser.parseElement("leaf"); |
| 1472 | if (leaf) { |
| 1473 | return this.parseElement("indirectExpression", parser, leaf); |
| 1474 | } |
| 1475 | parser.raiseError("Unexpected value: " + parser.currentToken().value); |
| 1476 | } |
| 1477 | parseHyperscriptProgram(parser) { |
| 1478 | var features = []; |
| 1479 | if (parser.hasMore()) { |
nothing calls this directly
no test coverage detected