diff options
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_error_stack.js | 7 | ||||
-rw-r--r-- | runtime/js/99_main.js | 4 |
2 files changed, 1 insertions, 10 deletions
diff --git a/runtime/js/40_error_stack.js b/runtime/js/40_error_stack.js index 7ed463273..1ecf0f6bb 100644 --- a/runtime/js/40_error_stack.js +++ b/runtime/js/40_error_stack.js @@ -13,12 +13,7 @@ } function opApplySourceMap(location) { - const res = core.opSync("op_apply_source_map", location); - return { - fileName: res.fileName, - lineNumber: res.lineNumber, - columnNumber: res.columnNumber, - }; + return core.applySourceMap(location); } window.__bootstrap.errorStack = { diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 44d457e5c..0b83846ca 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -222,10 +222,6 @@ delete Object.prototype.__proto__; build.setBuildInfo(runtimeOptions.target); util.setLogDebug(runtimeOptions.debugFlag, source); const prepareStackTrace = core.createPrepareStackTrace( - // TODO(bartlomieju): a very crude way to disable - // source mapping of errors. This condition is true - // only for compiled standalone binaries. - runtimeOptions.applySourceMaps ? errorStack.opApplySourceMap : undefined, errorStack.opFormatFileName, ); // deno-lint-ignore prefer-primordials |