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

Unified Diff: src/code-factory.cc

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: simplify AsyncIteratorValueUnwrap Created 3 years, 11 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/code-factory.h ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index ab652964c65fdf5c43422c760318529aa075b53d..eeb62e2b4bb4e87af6f988cf38d7238b55e0fd40 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -350,6 +350,12 @@ Callable CodeFactory::ResumeGenerator(Isolate* isolate) {
}
// static
+Callable CodeFactory::ResumeAwaitedGenerator(Isolate* isolate) {
+ return Callable(isolate->builtins()->ResumeAwaitedGeneratorTrampoline(),
+ ResumeGeneratorDescriptor(isolate));
+}
+
+// static
Callable CodeFactory::FastCloneRegExp(Isolate* isolate) {
return Callable(isolate->builtins()->FastCloneRegExp(),
FastCloneRegExpDescriptor(isolate));
« no previous file with comments | « src/code-factory.h ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698