Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 893f78810ff50b8b81013b47ee63a842237290b0..ef0a82cee326e059a894db84eb2e021231525c91 100755 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -338,7 +338,7 @@ bool Compiler::MakeCodeForLiveEdit(CompilationInfo* info) { |
static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) { |
Isolate* isolate = info->isolate(); |
- CompilationZoneScope zone_scope(isolate, DELETE_ON_EXIT); |
+ ZoneScope zone_scope(isolate, DELETE_ON_EXIT); |
PostponeInterruptsScope postpone(isolate); |
ASSERT(!isolate->global_context().is_null()); |
@@ -575,7 +575,7 @@ Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source, |
bool Compiler::CompileLazy(CompilationInfo* info) { |
Isolate* isolate = info->isolate(); |
- CompilationZoneScope zone_scope(isolate, DELETE_ON_EXIT); |
+ ZoneScope zone_scope(isolate, DELETE_ON_EXIT); |
// The VM is in the COMPILER state until exiting this function. |
VMState state(isolate, COMPILER); |