(ctx, { values })
| 5767 | return new _BeepCommand(exprs); |
| 5768 | } |
| 5769 | resolve(ctx, { values }) { |
| 5770 | for (let i = 0; i < this.exprs.length; i++) { |
| 5771 | const expr = this.exprs[i]; |
| 5772 | const val = values[i]; |
| 5773 | ctx.meta.runtime.beepValueToConsole(ctx.me, expr, val); |
| 5774 | } |
| 5775 | return this.findNext(ctx); |
| 5776 | } |
| 5777 | }; |
| 5778 | var ThrowCommand = class _ThrowCommand extends Command { |
| 5779 | static keyword = "throw"; |
nothing calls this directly
no test coverage detected