| 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 {
|
|
|