()
| 62 | }; |
| 63 | |
| 64 | var registerErrorHandling = function () { |
| 65 | quit_ = function (status, toThrow) { |
| 66 | unexpectedError(); |
| 67 | throw toThrow; |
| 68 | }; |
| 69 | window.onerror = (e) => { |
| 70 | let errorStr = JSON.stringify(e); |
| 71 | if (errorStr.includes("RuntimeError: Aborted()")) |
| 72 | quit_("RuntimeError: Aborted()", e); |
| 73 | }; |
| 74 | }; |
no test coverage detected