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

Unified Diff: pkg/kernel/binary.md

Issue 3008463002: Store the covariant keyword flag for parameters and fields into Kernel and resynthesize in analyzer. (Closed)
Patch Set: Update Field in binary. Created 3 years, 4 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: pkg/kernel/binary.md
diff --git a/pkg/kernel/binary.md b/pkg/kernel/binary.md
index 462f7ed6f9761060a80051afaf99e2dda78c422c..9d9e97a22811f699214654a9c7f88f67c45d63ea 100644
--- a/pkg/kernel/binary.md
+++ b/pkg/kernel/binary.md
@@ -262,7 +262,7 @@ type Field extends Member {
CanonicalNameReference canonicalName;
FileOffset fileOffset;
FileOffset fileEndOffset;
- Byte flags (isFinal, isConst, isStatic);
+ Byte flags (isFinal, isConst, isStatic, isCovariant);
Name name;
// An absolute path URI to the .dart file from which the field was created.
UriReference fileUri;
@@ -932,7 +932,7 @@ type VariableDeclaration {
// If it does not contain one this should be -1.
FileOffset fileEqualsOffset;
- Byte flags (isFinal, isConst);
+ Byte flags (isFinal, isConst, isCovariant);
// For named parameters, this is the parameter name.
// For other variables, the name is cosmetic, may be empty,
// and is not necessarily unique.
« no previous file with comments | « pkg/front_end/testcases/runtime_checks/dynamic_invocation.dart.outline.expect ('k') | pkg/kernel/lib/ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698