Index: src/parsing/parser.cc |
diff --git a/src/parsing/parser.cc b/src/parsing/parser.cc |
index 541557396f070b9c9c7c5388032b149540d6e4c5..e2d10ef73db3c48a9091e929e4fa5d3a926ba07e 100644 |
--- a/src/parsing/parser.cc |
+++ b/src/parsing/parser.cc |
@@ -2650,7 +2650,7 @@ FunctionLiteral* Parser::ParseFunctionLiteral( |
// the previous zone is always restored after parsing the body. To be able |
// to do scope analysis correctly after full parsing, we migrate needed |
// information when the function is parsed. |
- Zone temp_zone(zone()->allocator()); |
+ Zone temp_zone(zone()->allocator(), ZONE_NAME); |
DiscardableZoneScope zone_scope(this, &temp_zone, use_temp_zone); |
#ifdef DEBUG |
if (use_temp_zone) scope->set_needs_migration(); |