()
| 173 | } |
| 174 | |
| 175 | async function executeJS() { |
| 176 | try { |
| 177 | print("Executing, please wait..."); |
| 178 | const response = await eval_console(editor.getValue()); |
| 179 | print(response); |
| 180 | } catch(err) { |
| 181 | print(err.message); |
| 182 | } |
| 183 | |
| 184 | } |
| 185 | |
| 186 | function execDone(data) { |
| 187 | if (data["output"] === "text" || data["output"] === "exception") { |
no test coverage detected