Index: src/runtime/runtime-promise.cc |
diff --git a/src/runtime/runtime-promise.cc b/src/runtime/runtime-promise.cc |
index 655b9fa43d279d6ef1ba5c5888a026cf7feaf703..11bb70ef2db8546f263f84a633233c60a6a83959 100644 |
--- a/src/runtime/runtime-promise.cc |
+++ b/src/runtime/runtime-promise.cc |
@@ -184,16 +184,6 @@ RUNTIME_FUNCTION(Runtime_PromiseReject) { |
return isolate->heap()->undefined_value(); |
} |
-RUNTIME_FUNCTION(Runtime_PromiseFulfill) { |
- DCHECK(args.length() == 3); |
- HandleScope scope(isolate); |
- CONVERT_ARG_HANDLE_CHECKED(JSPromise, promise, 0); |
- CONVERT_SMI_ARG_CHECKED(status, 1); |
- CONVERT_ARG_HANDLE_CHECKED(Object, value, 2); |
- PromiseFulfill(isolate, promise, status, value); |
- return isolate->heap()->undefined_value(); |
-} |
- |
RUNTIME_FUNCTION(Runtime_EnqueuePromiseReactionJob) { |
HandleScope scope(isolate); |
DCHECK(args.length() == 2); |