Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 680a3f738abd3f5ad0e620b8162a56a67523280d..abe9509a7d7e653fcdaa96fbc2fc8266c0f7ef14 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -5609,7 +5609,7 @@ RUNTIME_FUNCTION(Runtime_StoreArrayLiteralElement) { |
// to a built-in function such as Array.forEach. |
RUNTIME_FUNCTION(Runtime_DebugCallbackSupportsStepping) { |
ASSERT(args.length() == 1); |
- if (!isolate->IsDebuggerActive() || !isolate->debug()->StepInActive()) { |
+ if (!isolate->debugger()->is_active() || !isolate->debug()->StepInActive()) { |
return isolate->heap()->false_value(); |
} |
CONVERT_ARG_CHECKED(Object, callback, 0); |