| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index bedca8093ea0969444a934c1a14f53023a9efe8e..9b3f9c920c7a69395e76e62a669473d6b70a014f 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -743,9 +743,6 @@ abstract class Compiler implements DiagnosticListener {
|
| /// `true` if async/await features are supported.
|
| final bool enableAsyncAwait;
|
|
|
| - /// `true` if enum declarations are supported.
|
| - final bool enableEnums;
|
| -
|
| /// If `true`, some values are cached for reuse in incremental compilation.
|
| /// Incremental compilation is basically calling [run] more than once.
|
| final bool hasIncrementalSupport;
|
| @@ -1008,7 +1005,6 @@ abstract class Compiler implements DiagnosticListener {
|
| bool hasIncrementalSupport: false,
|
| this.enableExperimentalMirrors: false,
|
| this.enableAsyncAwait: false,
|
| - this.enableEnums: false,
|
| this.allowNativeExtensions: false,
|
| this.generateCodeWithCompileTimeErrors: false,
|
| api.CompilerOutputProvider outputProvider,
|
|
|