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