Index: src/runtime/runtime-promise.cc |
diff --git a/src/runtime/runtime-promise.cc b/src/runtime/runtime-promise.cc |
index d0550a048d7ad7bb3858ef03527e4f9415a9d0b7..9818408d8871d527162a986d28ec5753d4ada1b7 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); |