Index: src/debug.cc |
diff --git a/src/debug.cc b/src/debug.cc |
index 52e671df119ec0335fe9f6ac196c1ee8f983a12a..e908126d895c3132c82ffe8f0aa1ecc606aac36c 100644 |
--- a/src/debug.cc |
+++ b/src/debug.cc |
@@ -824,7 +824,7 @@ bool Debug::Load() { |
Handle<JSBuiltinsObject> builtin = |
Handle<JSBuiltinsObject>(global->builtins(), isolate_); |
RETURN_ON_EXCEPTION_VALUE( |
- isolate_, JSReceiver::SetProperty(global, key, builtin, SLOPPY), false); |
+ isolate_, Object::SetProperty(global, key, builtin, SLOPPY), false); |
// Compile the JavaScript for the debugger in the debugger context. |
bool caught_exception = |