| Index: pkg/compiler/lib/src/resolution/scope.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/scope.dart b/pkg/compiler/lib/src/resolution/scope.dart
|
| index d25d6e14018b2bdf26c571680cbb1d83755a159d..380b7643dd744323cd8b40995b73f6ffb530ed73 100644
|
| --- a/pkg/compiler/lib/src/resolution/scope.dart
|
| +++ b/pkg/compiler/lib/src/resolution/scope.dart
|
| @@ -66,7 +66,7 @@ class VariableDefinitionScope extends NestedScope {
|
| /// available, but where locally declared and inherited members are not
|
| /// available.
|
| abstract class TypeVariablesScope extends NestedScope {
|
| - List<DartType> get typeVariables;
|
| + List<ResolutionDartType> get typeVariables;
|
|
|
| TypeVariablesScope(Scope parent) : super(parent) {
|
| assert(parent != null);
|
| @@ -77,7 +77,7 @@ abstract class TypeVariablesScope extends NestedScope {
|
| }
|
|
|
| Element lookupTypeVariable(String name) {
|
| - for (TypeVariableType type in typeVariables) {
|
| + for (ResolutionTypeVariableType type in typeVariables) {
|
| if (type.name == name) {
|
| return type.element;
|
| }
|
| @@ -99,7 +99,7 @@ class TypeDeclarationScope extends TypeVariablesScope {
|
| final GenericElement element;
|
|
|
| @override
|
| - List<DartType> get typeVariables => element.typeVariables;
|
| + List<ResolutionDartType> get typeVariables => element.typeVariables;
|
|
|
| TypeDeclarationScope(Scope parent, this.element) : super(parent);
|
|
|
|
|