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

Unified Diff: pkg/compiler/lib/src/resolution/access_semantics.dart

Issue 1120633002: Refactor index operator in SimpleTypeInferrer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix bug. Created 5 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
Index: pkg/compiler/lib/src/resolution/access_semantics.dart
diff --git a/pkg/compiler/lib/src/resolution/access_semantics.dart b/pkg/compiler/lib/src/resolution/access_semantics.dart
index ecd16c0f8d938033c3db285adce90d73c0051609..527a70a684e0a32364d957d9de749287108ab915 100644
--- a/pkg/compiler/lib/src/resolution/access_semantics.dart
+++ b/pkg/compiler/lib/src/resolution/access_semantics.dart
@@ -143,6 +143,11 @@ enum CompoundAccessKind {
SUPER_METHOD_SETTER,
/// Read from a superclass getter and write to a superclass field.
SUPER_GETTER_FIELD,
+
+ /// Read from a superclass where the getter (and maybe setter) is unresolved.
+ SUPER_UNRESOLVED_GETTER,
karlklose 2015/05/11 10:38:55 'UNRESOLVED_SUPER_GETTER'?
Johnni Winther 2015/05/11 13:04:28 Done.
+ /// Read from a superclass getter and write to an unresolved setter.
+ SUPER_UNRESOLVED_SETTER,
}
/**

Powered by Google App Engine
This is Rietveld 408576698