| Index: pkg/analyzer/lib/src/generated/engine.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
|
| index 60b1acfc8bf7266bb5bc4cb49a4bbd14320d1cb2..846b27bfe3379a2ea527fb068a59145df2f3e4ce 100644
|
| --- a/pkg/analyzer/lib/src/generated/engine.dart
|
| +++ b/pkg/analyzer/lib/src/generated/engine.dart
|
| @@ -1082,6 +1082,11 @@ abstract class AnalysisOptions {
|
| bool get enableSuperMixins;
|
|
|
| /**
|
| + * Return `true` if timing data should be gathered during execution.
|
| + */
|
| + bool get enableTiming;
|
| +
|
| + /**
|
| * Return `true` if errors, warnings and hints should be generated for sources
|
| * that are implicitly being analyzed. The default value is `true`.
|
| */
|
| @@ -1215,6 +1220,9 @@ class AnalysisOptionsImpl implements AnalysisOptions {
|
| */
|
| bool enableSuperMixins = false;
|
|
|
| + @override
|
| + bool enableTiming = false;
|
| +
|
| /**
|
| * A flag indicating whether errors, warnings and hints should be generated
|
| * for sources that are implicitly being analyzed.
|
| @@ -1293,6 +1301,7 @@ class AnalysisOptionsImpl implements AnalysisOptions {
|
| enableStrictCallChecks = options.enableStrictCallChecks;
|
| enableGenericMethods = options.enableGenericMethods;
|
| enableSuperMixins = options.enableSuperMixins;
|
| + enableTiming = options.enableTiming;
|
| generateImplicitErrors = options.generateImplicitErrors;
|
| generateSdkErrors = options.generateSdkErrors;
|
| hint = options.hint;
|
|
|