Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 9be16fb47bc869d54341ee49c2e2d71e573d1e67..55cb398c380f4afb8133b14bac95ee1855af1800 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -1056,7 +1056,7 @@ MaybeHandle<Object> Object::GetPropertyWithDefinedGetter( |
Debug* debug = isolate->debug(); |
// Handle stepping into a getter if step into is active. |
// TODO(rossberg): should this apply to getters that are function proxies? |
- if (debug->is_active()) debug->HandleStepIn(getter, false); |
+ if (debug->is_active()) debug->HandleStepIn(getter); |
return Execution::Call(isolate, getter, receiver, 0, NULL); |
} |
@@ -1071,7 +1071,7 @@ Maybe<bool> Object::SetPropertyWithDefinedSetter(Handle<Object> receiver, |
Debug* debug = isolate->debug(); |
// Handle stepping into a setter if step into is active. |
// TODO(rossberg): should this apply to getters that are function proxies? |
- if (debug->is_active()) debug->HandleStepIn(setter, false); |
+ if (debug->is_active()) debug->HandleStepIn(setter); |
Handle<Object> argv[] = { value }; |
RETURN_ON_EXCEPTION_VALUE(isolate, Execution::Call(isolate, setter, receiver, |