summaryrefslogtreecommitdiff
path: root/js/v8_source_maps.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/v8_source_maps.ts')
-rw-r--r--js/v8_source_maps.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/v8_source_maps.ts b/js/v8_source_maps.ts
index 1852a8982..bb7424f0b 100644
--- a/js/v8_source_maps.ts
+++ b/js/v8_source_maps.ts
@@ -88,6 +88,7 @@ export function wrapCallSite(frame: CallSite): CallSite {
origin = mapEvalOrigin(origin);
frame = cloneCallSite(frame);
frame.getEvalOrigin = () => origin;
+ frame.toString = () => CallSiteToString(frame);
return frame;
}