diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-06-07 10:25:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 11:25:10 +0200 |
commit | 9385a913125df07f5216322e0b18aec1c6883957 (patch) | |
tree | 88705e174bf9ba5626a3c9a80911a56e77294682 /core/02_error.js | |
parent | cfb6067f9bc0900a7d7fc6c75f19930542ed679c (diff) |
refactor(core): Move Deno.core bindings to ops (#14793)
Diffstat (limited to 'core/02_error.js')
-rw-r--r-- | core/02_error.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/02_error.js b/core/02_error.js index a7d5d0ee2..85c287102 100644 --- a/core/02_error.js +++ b/core/02_error.js @@ -201,7 +201,7 @@ if (fileName && lineNumber != null && columnNumber != null) { return patchCallSite( callSite, - core.applySourceMap({ + core.opSync("op_apply_source_map", { fileName, lineNumber, columnNumber, |