| 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 b9f8c177aa5b8cc9c468cf25973fff950c746198..6de42d64362f0493fd4cdc747b863d38544da494 100644
|
| --- a/pkg/analyzer/lib/src/generated/engine.dart
|
| +++ b/pkg/analyzer/lib/src/generated/engine.dart
|
| @@ -313,7 +313,7 @@ abstract class AnalysisContext {
|
| * Perform work until the given [result] has been computed for the given
|
| * [target]. Return the computed value.
|
| */
|
| - Object /*V*/ computeResult(
|
| + Object /*=V*/ computeResult /*<V>*/ (
|
| AnalysisTarget target, ResultDescriptor /*<V>*/ result);
|
|
|
| /**
|
| @@ -475,7 +475,7 @@ abstract class AnalysisContext {
|
| * If the corresponding [target] does not exist, or the [result] is not
|
| * computed yet, then the default value is returned.
|
| */
|
| - Object /*V*/ getResult(
|
| + Object /*=V*/ getResult /*<V>*/ (
|
| AnalysisTarget target, ResultDescriptor /*<V>*/ result);
|
|
|
| /**
|
| @@ -1591,7 +1591,8 @@ class ChangeSet {
|
| /**
|
| * Return `true` if this change set does not contain any changes.
|
| */
|
| - bool get isEmpty => addedSources.isEmpty &&
|
| + bool get isEmpty =>
|
| + addedSources.isEmpty &&
|
| changedSources.isEmpty &&
|
| _changedContent.isEmpty &&
|
| changedRanges.isEmpty &&
|
| @@ -2380,8 +2381,8 @@ class SourcesChangedEvent {
|
| */
|
| bool get wereSourcesRemovedOrDeleted =>
|
| _changeSet.removedSources.length > 0 ||
|
| - _changeSet.removedContainers.length > 0 ||
|
| - _changeSet.deletedSources.length > 0;
|
| + _changeSet.removedContainers.length > 0 ||
|
| + _changeSet.deletedSources.length > 0;
|
| }
|
|
|
| /**
|
|
|