(code)
| 83 | // Should be above all user-run code, so that the stack trace can be |
| 84 | // cut off at this point. |
| 85 | sandbox_run(code) { |
| 86 | return code instanceof Function ? code() : this.win.eval(code) |
| 87 | } |
| 88 | |
| 89 | prepare(text) { |
| 90 | let {code, dependencies} = preprocess(text, this) |