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

Unified Diff: pkg/kernel/lib/ast.dart

Issue 2669303002: Support for modular mixin resolution. (Closed)
Patch Set: Fix a bug Created 3 years, 10 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/kernel/lib/analyzer/loader.dart ('k') | pkg/kernel/lib/binary/ast_from_binary.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/ast.dart
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
index 7535f619c97c2ae64989498e1750f5f2259b1ee5..f4eb825d4f37340c3bc843281b646948623f2da9 100644
--- a/pkg/kernel/lib/ast.dart
+++ b/pkg/kernel/lib/ast.dart
@@ -274,6 +274,18 @@ enum ClassLevel {
/// members needed to detect override constraints.
Hierarchy,
+ /// All instance members of the class have their body loaded, and their
+ /// annotations are present.
+ ///
+ /// All supertypes of this class are at [Hierarchy] level or higher.
+ ///
+ /// If this class is a mixin application, then its mixin is loaded at [Mixin]
+ /// level or higher.
+ ///
+ /// This level exists so the contents of a mixin can be cloned into a
+ /// mixin application.
+ Mixin,
+
/// All members of the class are fully loaded and are in the correct order.
///
/// Annotations are present on classes and members.
« no previous file with comments | « pkg/kernel/lib/analyzer/loader.dart ('k') | pkg/kernel/lib/binary/ast_from_binary.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698