| Index: pkg/analysis_server/lib/src/generated_protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
|
| index 67eed941096b9c7ff0fad78c96c841fef6dedb62..a87d3e0836cff0744362257a012bfbeb3b2afd33 100644
|
| --- a/pkg/analysis_server/lib/src/generated_protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/generated_protocol.dart
|
| @@ -7649,6 +7649,7 @@ class Position implements HasToJson {
|
| * INLINE_METHOD
|
| * MOVE_FILE
|
| * RENAME
|
| + * SORT_MEMBERS
|
| * }
|
| */
|
| class RefactoringKind {
|
| @@ -7668,6 +7669,8 @@ class RefactoringKind {
|
|
|
| static const RENAME = const RefactoringKind._("RENAME");
|
|
|
| + static const SORT_MEMBERS = const RefactoringKind._("SORT_MEMBERS");
|
| +
|
| final String name;
|
|
|
| const RefactoringKind._(this.name);
|
| @@ -7690,6 +7693,8 @@ class RefactoringKind {
|
| return MOVE_FILE;
|
| case "RENAME":
|
| return RENAME;
|
| + case "SORT_MEMBERS":
|
| + return SORT_MEMBERS;
|
| }
|
| throw new Exception('Illegal enum value: $name');
|
| }
|
| @@ -10208,3 +10213,37 @@ class RenameOptions extends RefactoringOptions implements HasToJson {
|
| return _JenkinsSmiHash.finish(hash);
|
| }
|
| }
|
| +/**
|
| + * sortMembers feedback
|
| + */
|
| +class SortMembersFeedback {
|
| + @override
|
| + bool operator==(other) {
|
| + if (other is SortMembersFeedback) {
|
| + return true;
|
| + }
|
| + return false;
|
| + }
|
| +
|
| + @override
|
| + int get hashCode {
|
| + return 173473419;
|
| + }
|
| +}
|
| +/**
|
| + * sortMembers options
|
| + */
|
| +class SortMembersOptions {
|
| + @override
|
| + bool operator==(other) {
|
| + if (other is SortMembersOptions) {
|
| + return true;
|
| + }
|
| + return false;
|
| + }
|
| +
|
| + @override
|
| + int get hashCode {
|
| + return 99705880;
|
| + }
|
| +}
|
|
|