| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 6e5a3ad9affac05b7aa63a4699b00f3ee4c343f2..4dbea3f8620e05a55dd91d469a8eacea5ece4532 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -111,7 +111,7 @@ void CompilationInfo::Initialize(Isolate* isolate,
|
| mode_ = mode;
|
| abort_due_to_dependency_ = false;
|
| if (script_->type()->value() == Script::TYPE_NATIVE) MarkAsNative();
|
| - if (isolate_->debugger()->is_active()) MarkAsDebug();
|
| + if (isolate_->debug()->is_active()) MarkAsDebug();
|
|
|
| if (!shared_info_.is_null()) {
|
| ASSERT(strict_mode() == SLOPPY);
|
| @@ -772,7 +772,7 @@ static Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) {
|
| FixedArray* array = isolate->native_context()->embedder_data();
|
| script->set_context_data(array->get(0));
|
|
|
| - isolate->debugger()->OnBeforeCompile(script);
|
| + isolate->debug()->OnBeforeCompile(script);
|
|
|
| ASSERT(info->is_eval() || info->is_global());
|
|
|
| @@ -849,7 +849,7 @@ static Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) {
|
| live_edit_tracker.RecordFunctionInfo(result, lit, info->zone());
|
| }
|
|
|
| - isolate->debugger()->OnAfterCompile(script, Debugger::NO_AFTER_COMPILE_FLAGS);
|
| + isolate->debug()->OnAfterCompile(script, Debug::NO_AFTER_COMPILE_FLAGS);
|
|
|
| return result;
|
| }
|
|
|