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

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

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: 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
Index: src/runtime/runtime-generator.cc
diff --git a/src/runtime/runtime-generator.cc b/src/runtime/runtime-generator.cc
index 81c66408d363955522d998639132ba848d52dcfe..f958777a91cf341b05b720f4a9edbafec460676c 100644
--- a/src/runtime/runtime-generator.cc
+++ b/src/runtime/runtime-generator.cc
@@ -94,5 +94,9 @@ RUNTIME_FUNCTION(Runtime_GeneratorGetSourcePosition) {
return Smi::FromInt(generator->source_position());
}
+RUNTIME_FUNCTION(Runtime_AsyncGeneratorResolve) {
+ return isolate->heap()->undefined_value();
caitp 2017/01/10 04:13:42 This function is nonsense. TODO(caitp): remove thi
+}
+
} // namespace internal
} // namespace v8

Powered by Google App Engine
This is Rietveld 408576698