(parser)
| 1424 | return root; |
| 1425 | } |
| 1426 | parseUnaryExpression(parser) { |
| 1427 | parser.matchToken("the"); |
| 1428 | var result = parser.parseAnyOf(this.#unaryExpressions); |
| 1429 | if (result) return this.parseElement("indirectExpression", parser, result); |
| 1430 | return parser.parseElement("postfixExpression"); |
| 1431 | } |
| 1432 | parseExpression(parser) { |
| 1433 | parser.matchToken("the"); |
| 1434 | return parser.parseAnyOf(this.#topExpressions); |
nothing calls this directly
no test coverage detected