(parser)
| 1395 | return new EmptyCommandListCommand(); |
| 1396 | } |
| 1397 | parseLeaf(parser) { |
| 1398 | var result = parser.parseAnyOf(this.#leafExpressions); |
| 1399 | if (result == null) { |
| 1400 | return parser.parseElement("symbol"); |
| 1401 | } |
| 1402 | return result; |
| 1403 | } |
| 1404 | parseIndirectExpression(parser, root) { |
| 1405 | for (var i = 0; i < this.#indirectExpressions.length; i++) { |
| 1406 | var indirect = this.#indirectExpressions[i]; |
nothing calls this directly
no test coverage detected