| Index: src/debug/liveedit.cc
|
| diff --git a/src/debug/liveedit.cc b/src/debug/liveedit.cc
|
| index 64bc26fa2cc0a82fb584a9931b87b5c30355bc0c..181453d0a04397b24a08e6f5d9aa22a296a9a7d7 100644
|
| --- a/src/debug/liveedit.cc
|
| +++ b/src/debug/liveedit.cc
|
| @@ -1105,7 +1105,7 @@ static int TranslatePosition(int original_position,
|
| void TranslateSourcePositionTable(Handle<AbstractCode> code,
|
| Handle<JSArray> position_change_array) {
|
| Isolate* isolate = code->GetIsolate();
|
| - Zone zone(isolate->allocator());
|
| + Zone zone(isolate->allocator(), ZONE_NAME);
|
| SourcePositionTableBuilder builder(&zone);
|
|
|
| Handle<ByteArray> source_position_table(code->source_position_table());
|
| @@ -1517,7 +1517,7 @@ static const char* DropActivationsInActiveThreadImpl(Isolate* isolate,
|
| TARGET& target, // NOLINT
|
| bool do_drop) {
|
| Debug* debug = isolate->debug();
|
| - Zone zone(isolate->allocator());
|
| + Zone zone(isolate->allocator(), ZONE_NAME);
|
| Vector<StackFrame*> frames = CreateStackMap(isolate, &zone);
|
|
|
|
|
|
|