Index: src/runtime/runtime-promise.cc |
diff --git a/src/runtime/runtime-promise.cc b/src/runtime/runtime-promise.cc |
index a2c5acb5c8b5affc4b93ff90934304c2b0defead..49969cbf8abd3ab19d2282a2ee752ef55097b149 100644 |
--- a/src/runtime/runtime-promise.cc |
+++ b/src/runtime/runtime-promise.cc |
@@ -281,7 +281,7 @@ RUNTIME_FUNCTION(Runtime_PromiseRejectReactions) { |
RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |
- CONVERT_ARG_HANDLE_CHECKED(JSPromise, promise, 0); |
+ CONVERT_ARG_CHECKED(JSPromise, promise, 0); |
promise->set_has_handler(true); |
return isolate->heap()->undefined_value(); |
@@ -290,7 +290,7 @@ RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) { |
RUNTIME_FUNCTION(Runtime_PromiseMarkHandledHint) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |
- CONVERT_ARG_HANDLE_CHECKED(JSPromise, promise, 0); |
+ CONVERT_ARG_CHECKED(JSPromise, promise, 0); |
promise->set_handled_hint(true); |
return isolate->heap()->undefined_value(); |