mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383)
This commit is contained in:
parent
c14436a424
commit
b17a5fbcfa
10 changed files with 73 additions and 29 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue