| Index: pkg/analysis_server/test/integration/protocol_matchers.dart
|
| diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| index 5308d6b194109a136cd0c75e13fa5133a81f16f5..5f4ea0ed4b66a380468035b1ec9f7c64b3b3ef34 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1887,8 +1887,17 @@ final Matcher isExtractMethodOptions = new LazyMatcher(() => new MatchesJsonObje
|
|
|
| /**
|
| * inlineLocalVariable feedback
|
| + *
|
| + * {
|
| + * "name": String
|
| + * "occurrences": int
|
| + * }
|
| */
|
| -final Matcher isInlineLocalVariableFeedback = isNull;
|
| +final Matcher isInlineLocalVariableFeedback = new LazyMatcher(() => new MatchesJsonObject(
|
| + "inlineLocalVariable feedback", {
|
| + "name": isString,
|
| + "occurrences": isInt
|
| + }));
|
|
|
| /**
|
| * inlineLocalVariable options
|
|
|