Index: src/runtime/runtime-scopes.cc |
diff --git a/src/runtime/runtime-scopes.cc b/src/runtime/runtime-scopes.cc |
index fa8f7a811a8d96c91eb2fa30e9627f278df0df34..3839a2724efcee1030b9ae4b154ea5257ef73f88 100644 |
--- a/src/runtime/runtime-scopes.cc |
+++ b/src/runtime/runtime-scopes.cc |
@@ -1139,7 +1139,7 @@ RUNTIME_FUNCTION(Runtime_Arguments) { |
// Convert the key to a string. |
Handle<Object> converted; |
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, converted, |
- Execution::ToString(isolate, raw_key)); |
+ Object::ToString(isolate, raw_key)); |
Handle<String> key = Handle<String>::cast(converted); |
// Try to convert the string key into an array index. |