| Index: lib/compiler/implementation/compiler.dart
|
| diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
|
| index 510d83172d6fc2ee33739d84c1097f04e26854b0..7d58b7b2ee18b3da5a4720c2d93bdf81068dfb16 100644
|
| --- a/lib/compiler/implementation/compiler.dart
|
| +++ b/lib/compiler/implementation/compiler.dart
|
| @@ -164,9 +164,11 @@ class Compiler implements DiagnosticListener {
|
| static const SourceString MAIN = const SourceString('main');
|
| static const SourceString CALL_OPERATOR_NAME = const SourceString('call');
|
| static const SourceString NO_SUCH_METHOD = const SourceString('noSuchMethod');
|
| + static const SourceString RUNTIME_TYPE = const SourceString('runtimeType');
|
| static const SourceString START_ROOT_ISOLATE =
|
| const SourceString('startRootIsolate');
|
| bool enabledNoSuchMethod = false;
|
| + bool enabledRuntimeType = false;
|
|
|
| Stopwatch progress;
|
|
|
|
|