Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index 6ff0a09b614a09f3ded929de06d6bdf0edf9027c..1727108ed627d143a229bfca3905098942306d9d 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -350,8 +350,7 @@ bool ComputeLocation(Isolate* isolate, MessageLocation* target) { |
Handle<String> RenderCallSite(Isolate* isolate, Handle<Object> object) { |
MessageLocation location; |
if (ComputeLocation(isolate, &location)) { |
- Zone zone(isolate->allocator(), ZONE_NAME); |
- std::unique_ptr<ParseInfo> info(new ParseInfo(&zone, location.shared())); |
+ std::unique_ptr<ParseInfo> info(new ParseInfo(location.shared())); |
if (parsing::ParseAny(info.get())) { |
CallPrinter printer(isolate, location.shared()->IsUserJavaScript()); |
Handle<String> str = printer.Print(info->literal(), location.start_pos()); |