(parser)
| 165 | } |
| 166 | |
| 167 | parsePrimaryExpression(parser) { |
| 168 | var leaf = parser.parseElement("leaf"); |
| 169 | if (leaf) { |
| 170 | return this.parseElement("indirectExpression", parser, leaf); |
| 171 | } |
| 172 | parser.raiseError("Unexpected value: " + parser.currentToken().value); |
| 173 | } |
| 174 | |
| 175 | parseHyperscriptProgram(parser) { |
| 176 | var features = []; |
nothing calls this directly
no test coverage detected