Chromium Code Reviews

Unified Diff: src/compiler/access-builder.h

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: Fix minor parsing bug, add some local test262 tests Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/access-builder.h
diff --git a/src/compiler/access-builder.h b/src/compiler/access-builder.h
index cbe92bae4eb5b342acf25637b3d6f93ea54c2590..6f8df1f307cfb555e5c1668cc7b25e528460b50d 100644
--- a/src/compiler/access-builder.h
+++ b/src/compiler/access-builder.h
@@ -74,6 +74,9 @@ class V8_EXPORT_PRIVATE AccessBuilder final
// Provides access to JSGeneratorObject::input_or_debug_pos() field.
static FieldAccess ForJSGeneratorObjectInputOrDebugPos();
+ // Provides access to JSGeneratorObject::await_input() field.
+ static FieldAccess ForJSGeneratorObjectAwaitInput();
+
// Provides access to JSGeneratorObject::register_file() field.
static FieldAccess ForJSGeneratorObjectRegisterFile();

Powered by Google App Engine