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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.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/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
+
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698