diff options
Diffstat (limited to 'cli/rt/40_error_stack.js')
-rw-r--r-- | cli/rt/40_error_stack.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/rt/40_error_stack.js b/cli/rt/40_error_stack.js index 80f4fc5ed..5d1a077ad 100644 --- a/cli/rt/40_error_stack.js +++ b/cli/rt/40_error_stack.js @@ -240,7 +240,7 @@ }); for (const callSite of mappedCallSites) { error.__callSiteEvals.push(Object.freeze(evaluateCallSite(callSite))); - const isInternal = callSite.getFileName()?.startsWith("$deno$") ?? false; + const isInternal = callSite.getFileName()?.startsWith("deno:") ?? false; error.__formattedFrames.push(callSiteToString(callSite, isInternal)); } Object.freeze(error.__callSiteEvals); |