| 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 7a47daca02b772eb2bbdfce7c7ae8b2f7f13fc6c..fc09adb6655d92f32748e3bec043e8e385f04b17 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1518,6 +1518,7 @@ final Matcher isPosition = new LazyMatcher(() => new MatchesJsonObject(
|
| * INLINE_METHOD
|
| * MOVE_FILE
|
| * RENAME
|
| + * SORT_MEMBERS
|
| * }
|
| */
|
| final Matcher isRefactoringKind = new MatchesEnum("RefactoringKind", [
|
| @@ -1528,7 +1529,8 @@ final Matcher isRefactoringKind = new MatchesEnum("RefactoringKind", [
|
| "INLINE_LOCAL_VARIABLE",
|
| "INLINE_METHOD",
|
| "MOVE_FILE",
|
| - "RENAME"
|
| + "RENAME",
|
| + "SORT_MEMBERS"
|
| ]);
|
|
|
| /**
|
| @@ -2006,3 +2008,13 @@ final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
|
| "newName": isString
|
| }));
|
|
|
| +/**
|
| + * sortMembers feedback
|
| + */
|
| +final Matcher isSortMembersFeedback = isNull;
|
| +
|
| +/**
|
| + * sortMembers options
|
| + */
|
| +final Matcher isSortMembersOptions = isNull;
|
| +
|
|
|