Index: src/runtime/runtime-debug.cc |
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc |
index 2de372f66ba8caf53816f7ee4187dabad4aff93e..9990967a56c3e46740d4196efbd85ef26a52d5dd 100644 |
--- a/src/runtime/runtime-debug.cc |
+++ b/src/runtime/runtime-debug.cc |
@@ -2684,7 +2684,7 @@ RUNTIME_FUNCTION(Runtime_DebugPrepareStepInIfStepping) { |
RUNTIME_FUNCTION(Runtime_DebugPushPromise) { |
DCHECK(args.length() == 1); |
HandleScope scope(isolate); |
- CONVERT_ARG_HANDLE_CHECKED(JSObject, promise, 0); |
+ CONVERT_ARG_HANDLE_CHECKED(Object, promise, 0); |
isolate->PushPromise(promise); |
return isolate->heap()->undefined_value(); |
} |