| 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 e7e180e89050832cd2741a16cde2b2569c5def58..c6fdc8300f8fc8c6b5f714f6ab444c5ce33dff58 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1906,8 +1906,20 @@ final Matcher isInlineLocalVariableOptions = isNull;
|
|
|
| /**
|
| * inlineMethod feedback
|
| + *
|
| + * {
|
| + * "className": optional String
|
| + * "methodName": String
|
| + * "isDeclaration": bool
|
| + * }
|
| */
|
| -final Matcher isInlineMethodFeedback = isNull;
|
| +final Matcher isInlineMethodFeedback = new LazyMatcher(() => new MatchesJsonObject(
|
| + "inlineMethod feedback", {
|
| + "methodName": isString,
|
| + "isDeclaration": isBool
|
| + }, optionalFields: {
|
| + "className": isString
|
| + }));
|
|
|
| /**
|
| * inlineMethod options
|
|
|