| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index ce5a8e8c735dd91b61f0d10f3a9c0ba32edb4ceb..938449e7ee39ab1ecfeeec84651923ba2a6fd177 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -10,7 +10,8 @@ import 'dart:collection';
|
| import 'package:compiler/compiler.dart' as api;
|
| import 'package:compiler/src/common/names.dart' show Uris;
|
| import 'package:compiler/src/constants/expressions.dart';
|
| -import 'package:compiler/src/elements/resolution_types.dart' show DartType;
|
| +import 'package:compiler/src/elements/resolution_types.dart'
|
| + show ResolutionDartType;
|
| import 'package:compiler/src/diagnostics/diagnostic_listener.dart';
|
| import 'package:compiler/src/diagnostics/source_span.dart';
|
| import 'package:compiler/src/diagnostics/spannable.dart';
|
| @@ -321,7 +322,7 @@ class CollectingTreeElements extends TreeElementMapping {
|
|
|
| class MockTypeVariablesScope extends TypeVariablesScope {
|
| @override
|
| - List<DartType> get typeVariables => <DartType>[];
|
| + List<ResolutionDartType> get typeVariables => <ResolutionDartType>[];
|
| MockTypeVariablesScope(Scope parent) : super(parent);
|
| String toString() => 'MockTypeVariablesScope($parent)';
|
| }
|
|
|