| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index 94439886ea26320c3a1332c323f740b9644d2ae3..7fdad36a504f0fc57b83210f42ef3be7f30277f9 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -75,7 +75,8 @@ class MockCompiler extends Compiler {
|
| bool trustTypeAnnotations: false,
|
| bool enableEnums: false,
|
| int this.expectedWarnings,
|
| - int this.expectedErrors})
|
| + int this.expectedErrors,
|
| + api.CompilerOutputProvider outputProvider})
|
| : sourceFiles = new Map<String, SourceFile>(),
|
| super(enableTypeAssertions: enableTypeAssertions,
|
| enableMinification: enableMinification,
|
| @@ -88,7 +89,8 @@ class MockCompiler extends Compiler {
|
| preserveComments: preserveComments,
|
| trustTypeAnnotations: trustTypeAnnotations,
|
| showPackageWarnings: true,
|
| - enableEnums: enableEnums) {
|
| + enableEnums: enableEnums,
|
| + outputProvider: outputProvider) {
|
| this.disableInlining = disableInlining;
|
|
|
| deferredLoadTask = new MockDeferredLoadTask(this);
|
|
|