(ctx, { values })
| 90 | } |
| 91 | |
| 92 | resolve(ctx, { values }) { |
| 93 | for (let i = 0; i < this.exprs.length; i++) { |
| 94 | const expr = this.exprs[i]; |
| 95 | const val = values[i]; |
| 96 | ctx.meta.runtime.beepValueToConsole(ctx.me, expr, val); |
| 97 | } |
| 98 | return this.findNext(ctx); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
nothing calls this directly
no test coverage detected