| 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 cd250c902dcef74d673d8805a80e3f1e380e056c..b8dbe37fa2987226d80971dd6196df85be5c319d 100644
|
| --- a/pkg/analyzer/lib/src/generated/engine.dart
|
| +++ b/pkg/analyzer/lib/src/generated/engine.dart
|
| @@ -1056,6 +1056,7 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| this._options.dart2jsHint = options.dart2jsHint;
|
| this._options.hint = options.hint;
|
| this._options.incremental = options.incremental;
|
| + this._options.incrementalLog = options.incrementalLog;
|
| this._options.preserveComments = options.preserveComments;
|
| _generateSdkErrors = options.generateSdkErrors;
|
| if (needsRecompute) {
|
| @@ -4936,7 +4937,8 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| typeProvider,
|
| unitSource,
|
| librarySource,
|
| - dartEntry);
|
| + dartEntry,
|
| + analysisOptions.incrementalLog);
|
| bool success = resolver.resolve(oldUnit, newCode);
|
| if (!success) {
|
| return false;
|
| @@ -6342,6 +6344,11 @@ abstract class AnalysisOptions {
|
| bool get incremental;
|
|
|
| /**
|
| + * Return the log incremental logger specification.
|
| + */
|
| + String get incrementalLog;
|
| +
|
| + /**
|
| * Return `true` if analysis is to parse comments.
|
| *
|
| * @return `true` if analysis is to parse comments
|
| @@ -6431,6 +6438,8 @@ class AnalysisOptionsImpl implements AnalysisOptions {
|
| */
|
| bool incremental = false;
|
|
|
| + String incrementalLog = null;
|
| +
|
| /**
|
| * A flag indicating whether analysis is to parse comments.
|
| */
|
| @@ -6459,6 +6468,7 @@ class AnalysisOptionsImpl implements AnalysisOptions {
|
| _generateSdkErrors = options.generateSdkErrors;
|
| hint = options.hint;
|
| incremental = options.incremental;
|
| + incrementalLog = options.incrementalLog;
|
| preserveComments = options.preserveComments;
|
| }
|
|
|
|
|