(parser)
| 1433 | return root; |
| 1434 | } |
| 1435 | parseUnaryExpression(parser) { |
| 1436 | parser.matchToken("the"); |
| 1437 | var result = parser.parseAnyOf(this.#unaryExpressions); |
| 1438 | if (result) return this.parseElement("indirectExpression", parser, result); |
| 1439 | return parser.parseElement("postfixExpression"); |
| 1440 | } |
| 1441 | parseExpression(parser) { |
| 1442 | parser.matchToken("the"); |
| 1443 | return parser.parseAnyOf(this.#topExpressions); |
nothing calls this directly
no test coverage detected