(parser)
| 1403 | return new EmptyCommandListCommand(); |
| 1404 | } |
| 1405 | parseLeaf(parser) { |
| 1406 | var result = parser.parseAnyOf(this.#leafExpressions); |
| 1407 | if (result == null) { |
| 1408 | return parser.parseElement("symbol"); |
| 1409 | } |
| 1410 | return result; |
| 1411 | } |
| 1412 | parseIndirectExpression(parser, root) { |
| 1413 | for (var i = 0; i < this.#indirectExpressions.length; i++) { |
| 1414 | var indirect = this.#indirectExpressions[i]; |
nothing calls this directly
no test coverage detected