Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(913)

Unified Diff: src/runtime/runtime-internal.cc

Issue 2314903004: [promises] Move PromiseResolveThenableJob to c++ (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | test/mjsunit/es6/promise-thenable-proxy.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime-internal.cc
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc
index aa4675b713851260cc901d1d4b5a7abd3605bd0c..6896670cc99662cccfe56d7f04e7f78d8cd450e9 100644
--- a/src/runtime/runtime-internal.cc
+++ b/src/runtime/runtime-internal.cc
@@ -554,6 +554,21 @@ RUNTIME_FUNCTION(Runtime_GetAndResetRuntimeCallStats) {
}
}
+RUNTIME_FUNCTION(Runtime_EnqueuePromiseResolveThenableJob) {
+ HandleScope scope(isolate);
+ DCHECK(args.length() == 6);
+ CONVERT_ARG_HANDLE_CHECKED(JSReceiver, resolution, 0);
+ CONVERT_ARG_HANDLE_CHECKED(JSFunction, then, 1);
+ CONVERT_ARG_HANDLE_CHECKED(JSFunction, resolve, 2);
+ CONVERT_ARG_HANDLE_CHECKED(JSFunction, reject, 3);
+ CONVERT_ARG_HANDLE_CHECKED(Object, before_debug_event, 4);
+ CONVERT_ARG_HANDLE_CHECKED(Object, after_debug_event, 5);
+ Handle<PromiseContainer> container = isolate->factory()->NewPromiseContainer(
+ resolution, then, resolve, reject, before_debug_event, after_debug_event);
+ isolate->EnqueueMicrotask(container);
+ return isolate->heap()->undefined_value();
+}
+
RUNTIME_FUNCTION(Runtime_EnqueueMicrotask) {
HandleScope scope(isolate);
DCHECK(args.length() == 1);
« no previous file with comments | « src/runtime/runtime.h ('k') | test/mjsunit/es6/promise-thenable-proxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698