| Index: sdk/lib/_internal/compiler/implementation/compiler.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| index 43c1e31fd240fdce39ecb8192722856ca9a984d4..91ee72a610f4ca239c2f7af099de85bd360d2392 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| @@ -633,7 +633,9 @@ abstract class Compiler implements DiagnosticListener {
|
|
|
| bool get compileAll => false;
|
|
|
| - bool get disableTypeInference => disableTypeInferenceFlag;
|
| + bool get disableTypeInference {
|
| + return disableTypeInferenceFlag || disableTypeInferenceForMirrors;
|
| + }
|
|
|
| int getNextFreeClassId() => nextFreeClassId++;
|
|
|
|
|