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

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

Issue 1936403002: Serialize / resynthesize 'isAsynchronous' and 'isGenerator' flags. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/resynthesize.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4b785ac44c13e33f48359d2fdda8427ea9b46820..f67bec5243e05a7d0cccddaf0d842ea3ed5673d1 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -1670,6 +1670,12 @@ abstract class UnlinkedExecutable extends base.SummaryClass {
bool get isAbstract;
/**
+ * Indicates whether the executable has body marked as being asynchronous.
+ */
+ @Id(27)
+ bool get isAsynchronous;
Paul Berry 2016/05/02 21:49:30 This should be marked as "@informative", since it
scheglov 2016/05/02 21:52:56 Done.
+
+ /**
* Indicates whether the executable is declared using the `const` keyword.
*/
@Id(12)
@@ -1688,6 +1694,12 @@ abstract class UnlinkedExecutable extends base.SummaryClass {
bool get isFactory;
/**
+ * Indicates whether the executable has body marked as being a generator.
+ */
+ @Id(28)
+ bool get isGenerator;
Paul Berry 2016/05/02 21:49:30 Same here.
+
+ /**
* Indicates whether the executable is a redirected constructor.
*/
@Id(13)
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/resynthesize.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698