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

Unified Diff: pkg/analyzer/lib/src/summary/idl.dart

Issue 2541603002: Support for AwaitExpression in unlinked expressions. (Closed)
Patch Set: Created 4 years, 1 month 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: pkg/analyzer/lib/src/summary/idl.dart
diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
index 53102b1200e031d3a975987b0871fc3c202859d8..b762086e2c525e940e99f846e57c9680d71d5ba1 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -2341,6 +2341,12 @@ enum UnlinkedExprOperation {
* first.
*/
ifNull,
+
+ /**
+ * Pop the top value from the stack. If the value is `Future<T>`, push `T`
+ * into the stack. Otherwise, push `dynamic`.
Paul Berry 2016/11/29 19:15:57 This comment should reflect the behavior of values
scheglov 2016/11/29 19:39:13 Done.
+ */
+ await,
}
/**

Powered by Google App Engine
This is Rietveld 408576698