| Index: tests/compiler/dart2js/analyze_helper.dart
|
| diff --git a/tests/compiler/dart2js/analyze_helper.dart b/tests/compiler/dart2js/analyze_helper.dart
|
| index 7d843925e29181010d6c541eb3a642dae78877f5..2d6b6041d6c88a3d53a82b620980360a22689e32 100644
|
| --- a/tests/compiler/dart2js/analyze_helper.dart
|
| +++ b/tests/compiler/dart2js/analyze_helper.dart
|
| @@ -131,7 +131,7 @@ class CollectingDiagnosticHandler extends FormattingDiagnosticHandler {
|
| }
|
| }
|
|
|
| -typedef bool CheckResults(Compiler compiler,
|
| +typedef bool CheckResults(CompilerImpl compiler,
|
| CollectingDiagnosticHandler handler);
|
|
|
| Future analyze(List<Uri> uriList,
|
| @@ -161,7 +161,7 @@ Future analyze(List<Uri> uriList,
|
| Flags.showPackageWarnings];
|
| if (analyzeAll) options.add(Flags.analyzeAll);
|
| if (analyzeMain) options.add(Flags.analyzeMain);
|
| - var compiler = new Compiler(
|
| + var compiler = new CompilerImpl(
|
| provider,
|
| null,
|
| handler,
|
|
|