| Index: pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
|
| diff --git a/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart b/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
|
| index 81ad8dcb692f53c3b3ea4028f2e20f65dda97261..e7c53595277b0fbc54b52edc64cc60001ffdc1ba 100644
|
| --- a/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
|
| +++ b/pkg/analysis_server/lib/plugin/protocol/generated_protocol.dart
|
| @@ -9447,7 +9447,6 @@ class CompletionSuggestionKind implements Enum {
|
| * "explicitFileCount": int
|
| * "implicitFileCount": int
|
| * "workItemQueueLength": int
|
| - * "workItemQueueLengthAverage": String
|
| * "cacheEntryExceptions": List<String>
|
| * }
|
| *
|
| @@ -9462,8 +9461,6 @@ class ContextData implements HasToJson {
|
|
|
| int _workItemQueueLength;
|
|
|
| - String _workItemQueueLengthAverage;
|
| -
|
| List<String> _cacheEntryExceptions;
|
|
|
| /**
|
| @@ -9519,21 +9516,6 @@ class ContextData implements HasToJson {
|
| }
|
|
|
| /**
|
| - * A rolling average of work items in the queue. (A double encoded as a
|
| - * String.)
|
| - */
|
| - String get workItemQueueLengthAverage => _workItemQueueLengthAverage;
|
| -
|
| - /**
|
| - * A rolling average of work items in the queue. (A double encoded as a
|
| - * String.)
|
| - */
|
| - void set workItemQueueLengthAverage(String value) {
|
| - assert(value != null);
|
| - this._workItemQueueLengthAverage = value;
|
| - }
|
| -
|
| - /**
|
| * Exceptions associated with cache entries.
|
| */
|
| List<String> get cacheEntryExceptions => _cacheEntryExceptions;
|
| @@ -9546,12 +9528,11 @@ class ContextData implements HasToJson {
|
| this._cacheEntryExceptions = value;
|
| }
|
|
|
| - ContextData(String name, int explicitFileCount, int implicitFileCount, int workItemQueueLength, String workItemQueueLengthAverage, List<String> cacheEntryExceptions) {
|
| + ContextData(String name, int explicitFileCount, int implicitFileCount, int workItemQueueLength, List<String> cacheEntryExceptions) {
|
| this.name = name;
|
| this.explicitFileCount = explicitFileCount;
|
| this.implicitFileCount = implicitFileCount;
|
| this.workItemQueueLength = workItemQueueLength;
|
| - this.workItemQueueLengthAverage = workItemQueueLengthAverage;
|
| this.cacheEntryExceptions = cacheEntryExceptions;
|
| }
|
|
|
| @@ -9584,19 +9565,13 @@ class ContextData implements HasToJson {
|
| } else {
|
| throw jsonDecoder.missingKey(jsonPath, "workItemQueueLength");
|
| }
|
| - String workItemQueueLengthAverage;
|
| - if (json.containsKey("workItemQueueLengthAverage")) {
|
| - workItemQueueLengthAverage = jsonDecoder.decodeString(jsonPath + ".workItemQueueLengthAverage", json["workItemQueueLengthAverage"]);
|
| - } else {
|
| - throw jsonDecoder.missingKey(jsonPath, "workItemQueueLengthAverage");
|
| - }
|
| List<String> cacheEntryExceptions;
|
| if (json.containsKey("cacheEntryExceptions")) {
|
| cacheEntryExceptions = jsonDecoder.decodeList(jsonPath + ".cacheEntryExceptions", json["cacheEntryExceptions"], jsonDecoder.decodeString);
|
| } else {
|
| throw jsonDecoder.missingKey(jsonPath, "cacheEntryExceptions");
|
| }
|
| - return new ContextData(name, explicitFileCount, implicitFileCount, workItemQueueLength, workItemQueueLengthAverage, cacheEntryExceptions);
|
| + return new ContextData(name, explicitFileCount, implicitFileCount, workItemQueueLength, cacheEntryExceptions);
|
| } else {
|
| throw jsonDecoder.mismatch(jsonPath, "ContextData", json);
|
| }
|
| @@ -9608,7 +9583,6 @@ class ContextData implements HasToJson {
|
| result["explicitFileCount"] = explicitFileCount;
|
| result["implicitFileCount"] = implicitFileCount;
|
| result["workItemQueueLength"] = workItemQueueLength;
|
| - result["workItemQueueLengthAverage"] = workItemQueueLengthAverage;
|
| result["cacheEntryExceptions"] = cacheEntryExceptions;
|
| return result;
|
| }
|
| @@ -9623,7 +9597,6 @@ class ContextData implements HasToJson {
|
| explicitFileCount == other.explicitFileCount &&
|
| implicitFileCount == other.implicitFileCount &&
|
| workItemQueueLength == other.workItemQueueLength &&
|
| - workItemQueueLengthAverage == other.workItemQueueLengthAverage &&
|
| listEqual(cacheEntryExceptions, other.cacheEntryExceptions, (String a, String b) => a == b);
|
| }
|
| return false;
|
| @@ -9636,7 +9609,6 @@ class ContextData implements HasToJson {
|
| hash = JenkinsSmiHash.combine(hash, explicitFileCount.hashCode);
|
| hash = JenkinsSmiHash.combine(hash, implicitFileCount.hashCode);
|
| hash = JenkinsSmiHash.combine(hash, workItemQueueLength.hashCode);
|
| - hash = JenkinsSmiHash.combine(hash, workItemQueueLengthAverage.hashCode);
|
| hash = JenkinsSmiHash.combine(hash, cacheEntryExceptions.hashCode);
|
| return JenkinsSmiHash.finish(hash);
|
| }
|
|
|