Index: src/runtime/runtime-proxy.cc |
diff --git a/src/runtime/runtime-proxy.cc b/src/runtime/runtime-proxy.cc |
index 1ec55e9944ae6ccb66c134c8f8ae8dc487508823..a05ca055b32e71a52791ff9529cc962103228087 100644 |
--- a/src/runtime/runtime-proxy.cc |
+++ b/src/runtime/runtime-proxy.cc |
@@ -35,10 +35,10 @@ RUNTIME_FUNCTION(Runtime_CreateJSFunctionProxy) { |
} |
-RUNTIME_FUNCTION(Runtime_IsJSProxy) { |
+RUNTIME_FUNCTION(RuntimeReference_IsJSProxy) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |
- CONVERT_ARG_HANDLE_CHECKED(Object, obj, 0); |
+ CONVERT_ARG_CHECKED(Object, obj, 0); |
return isolate->heap()->ToBoolean(obj->IsJSProxy()); |
} |