| Index: tests/compiler/dart2js/mock_compiler.dart
|
| diff --git a/tests/compiler/dart2js/mock_compiler.dart b/tests/compiler/dart2js/mock_compiler.dart
|
| index 3d879dfc9cc15a0b6799f869856fbe05d5150784..5dac59ac4076ad5367682b6fbc4b084027257fd0 100644
|
| --- a/tests/compiler/dart2js/mock_compiler.dart
|
| +++ b/tests/compiler/dart2js/mock_compiler.dart
|
| @@ -75,6 +75,7 @@ class MockCompiler extends Compiler {
|
| // affected by inlining support.
|
| bool disableInlining: true,
|
| bool trustTypeAnnotations: false,
|
| + bool computeAnalysisStats: false,
|
| bool enableAsyncAwait: false,
|
| int this.expectedWarnings,
|
| int this.expectedErrors,
|
| @@ -92,6 +93,7 @@ class MockCompiler extends Compiler {
|
| emitJavaScript: emitJavaScript,
|
| preserveComments: preserveComments,
|
| trustTypeAnnotations: trustTypeAnnotations,
|
| + computeAnalysisStats: computeAnalysisStats,
|
| showPackageWarnings: true,
|
| outputProvider: outputProvider) {
|
| this.disableInlining = disableInlining;
|
|
|