diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-06 23:05:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 23:05:36 -0500 |
commit | c113df1bb8a0c7d0c560ad32c0291c918c7da7b4 (patch) | |
tree | 0d15de448be602c22aecb2ec65ac7667c437a209 /tests/async_error.ts.out | |
parent | 568ac0c9026b6f4012e2511a026bb5eb31a06020 (diff) |
Process source maps in Rust instead of JS (#1280)
- Improves speed and binary size significantly.
- Makes deno_last_exception() output a JSON structure.
- Isolate::execute and Isolate::event_loop now return
structured, mapped JSError objects on errors.
- Removes libdeno functions:
libdeno.setGlobalErrorHandler()
libdeno.setPromiseRejectHandler()
libdeno.setPromiseErrorExaminer()
In collaboration with Ryan Dahl.
Diffstat (limited to 'tests/async_error.ts.out')
-rw-r--r-- | tests/async_error.ts.out | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/async_error.ts.out b/tests/async_error.ts.out index 1205f10b0..602d76424 100644 --- a/tests/async_error.ts.out +++ b/tests/async_error.ts.out @@ -4,8 +4,7 @@ world Error: error at foo ([WILDCARD]tests/async_error.ts:4:9) at eval ([WILDCARD]tests/async_error.ts:7:1) - at Runner.eval [as _globalEval] (<anonymous>) - at Runner._gatherDependencies ([WILDCARD]/js/runner.ts:[WILDCARD]) - at Runner.run ([WILDCARD]/js/runner.ts:[WILDCARD]) + at _gatherDependencies ([WILDCARD]/js/runner.ts:[WILDCARD]) + at run ([WILDCARD]/js/runner.ts:[WILDCARD]) at denoMain ([WILDCARD]/js/main.ts:[WILDCARD]) at deno_main.js:1:1 |