Index: src/liveedit.cc |
diff --git a/src/liveedit.cc b/src/liveedit.cc |
index e6bb4b29a636297d25d1d69c9ca7ff3a7b1edb52..df8b64b3ac86f0b3490a58f9bb5086ec3d15ccaf 100644 |
--- a/src/liveedit.cc |
+++ b/src/liveedit.cc |
@@ -1165,7 +1165,7 @@ void LiveEdit::ReplaceFunctionCode( |
Handle<SharedFunctionInfo> shared_info = shared_info_wrapper.GetInfo(); |
- isolate->heap()->EnsureHeapIsIterable(); |
+ isolate->heap()->MakeHeapIterable(); |
if (IsJSFunctionCode(shared_info->code())) { |
Handle<Code> code = compile_info_wrapper.GetFunctionCode(); |
@@ -1402,7 +1402,7 @@ void LiveEdit::PatchFunctionPositions(Handle<JSArray> shared_info_array, |
info->set_end_position(new_function_end); |
info->set_function_token_position(new_function_token_pos); |
- info->GetIsolate()->heap()->EnsureHeapIsIterable(); |
+ info->GetIsolate()->heap()->MakeHeapIterable(); |
if (IsJSFunctionCode(info->code())) { |
// Patch relocation info section of the code. |