(parser)
| 126 | } |
| 127 | |
| 128 | parseUnaryExpression(parser) { |
| 129 | parser.matchToken("the"); // optional "the" |
| 130 | var result = parser.parseAnyOf(this.#unaryExpressions); |
| 131 | if (result) return this.parseElement("indirectExpression", parser, result); |
| 132 | return parser.parseElement("postfixExpression"); |
| 133 | } |
| 134 | |
| 135 | parseExpression(parser) { |
| 136 | parser.matchToken("the"); // optional "the" |
nothing calls this directly
no test coverage detected