(parser)
| 133 | } |
| 134 | |
| 135 | parseExpression(parser) { |
| 136 | parser.matchToken("the"); // optional "the" |
| 137 | return parser.parseAnyOf(this.#topExpressions); |
| 138 | } |
| 139 | |
| 140 | parseAssignableExpression(parser) { |
| 141 | parser.matchToken("the"); // optional "the" |
nothing calls this directly
no test coverage detected