Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 3d916a60fb4715028139439e7188a1598eedb390..e53c4c1b42ec437c890e5c347a314d675cd01105 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -11044,9 +11044,8 @@ RUNTIME_FUNCTION(Runtime_DebugIndexedInterceptorElementValue) { |
static bool CheckExecutionState(Isolate* isolate, int break_id) { |
- return !isolate->debug()->debug_context().is_null() && |
- isolate->debug()->break_id() != 0 && |
- isolate->debug()->break_id() == break_id; |
+ return (isolate->debug()->break_id() != 0 && |
+ break_id == isolate->debug()->break_id()); |
} |