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

Unified Diff: sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 12210013: Implement subtype for type variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart
diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
index 81e2fc0b2c1d44e7cb39ddafa501d08ba7a00550..dce704866af8215cb11fa7fabd1c1e0b7acf6e32 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -768,11 +768,11 @@ abstract class TargetElement extends Element {
abstract class TypeVariableElement extends Element {
TypeVariableType get type;
- DartType get bound;
+ DartType get upperBound;
// TODO(kasperl): Try to get rid of these.
void set type(TypeVariableType value);
- void set bound(DartType value);
+ void set upperBound(DartType value);
}
abstract class MetadataAnnotation {

Powered by Google App Engine
This is Rietveld 408576698