Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1400)

Unified Diff: pkg/analysis_server/lib/src/generated_protocol.dart

Issue 583843004: Issue 20910. Add SORT_MEMBERS refactoring to the server specification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
+ }
+}
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698