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

Unified Diff: src/compiler.cc

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: properly rebase Created 4 years, 7 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/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index 052e7430d282a1e2af1ef83ea2b74ce97a18672a..40f91e4164d7c2a1c211ba289fcdd774fd6f2778 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -486,6 +486,11 @@ bool UseIgnition(CompilationInfo* info) {
return false;
}
+ if (info->shared_info()->is_async()) {
+ // TODO(caitp): plug this into ignition generators
+ return false;
+ }
Dan Ehrenberg 2016/05/04 22:52:36 Could you move this into the above conditional, es
+
// Checks whether top level functions should be passed by the filter.
if (info->shared_info()->is_toplevel()) {
Vector<const char> filter = CStrVector(FLAG_ignition_filter);

Powered by Google App Engine
This is Rietveld 408576698