| Index: tests/compiler/dart2js/type_checker_test.dart
|
| diff --git a/tests/compiler/dart2js/type_checker_test.dart b/tests/compiler/dart2js/type_checker_test.dart
|
| index 7a2ed2283c648c28ce2bb14a045034c31bb385c8..10fb244f8a147aa46c8491f69c85057a0fe11cd9 100644
|
| --- a/tests/compiler/dart2js/type_checker_test.dart
|
| +++ b/tests/compiler/dart2js/type_checker_test.dart
|
| @@ -71,7 +71,7 @@ main() {
|
| }
|
|
|
| testSimpleTypes(MockCompiler compiler) {
|
| - checkType(DartType type, String code) {
|
| + checkType(ResolutionDartType type, String code) {
|
| Expect.equals(type, analyzeType(compiler, code));
|
| }
|
|
|
| @@ -2649,7 +2649,7 @@ Future setup(test(MockCompiler compiler)) {
|
| return compiler.init("import 'dart:async';").then((_) => test(compiler));
|
| }
|
|
|
| -DartType analyzeType(MockCompiler compiler, String text) {
|
| +ResolutionDartType analyzeType(MockCompiler compiler, String text) {
|
| var node = parseExpression(text);
|
| TypeCheckerVisitor visitor = new TypeCheckerVisitor(
|
| compiler, new TreeElementMapping(null), compiler.types);
|
|
|