(ctx, { values })
| 5424 | return new _BeepCommand(exprs); |
| 5425 | } |
| 5426 | resolve(ctx, { values }) { |
| 5427 | for (let i = 0; i < this.exprs.length; i++) { |
| 5428 | const expr = this.exprs[i]; |
| 5429 | const val = values[i]; |
| 5430 | ctx.meta.runtime.beepValueToConsole(ctx.me, expr, val); |
| 5431 | } |
| 5432 | return this.findNext(ctx); |
| 5433 | } |
| 5434 | }; |
| 5435 | var ThrowCommand = class _ThrowCommand extends Command { |
| 5436 | static keyword = "throw"; |
nothing calls this directly
no test coverage detected