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

Side by Side 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, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 /** 9 /**
10 * Matchers for data types defined in the analysis server API 10 * Matchers for data types defined in the analysis server API
(...skipping 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 * 1511 *
1512 * enum { 1512 * enum {
1513 * CONVERT_GETTER_TO_METHOD 1513 * CONVERT_GETTER_TO_METHOD
1514 * CONVERT_METHOD_TO_GETTER 1514 * CONVERT_METHOD_TO_GETTER
1515 * EXTRACT_LOCAL_VARIABLE 1515 * EXTRACT_LOCAL_VARIABLE
1516 * EXTRACT_METHOD 1516 * EXTRACT_METHOD
1517 * INLINE_LOCAL_VARIABLE 1517 * INLINE_LOCAL_VARIABLE
1518 * INLINE_METHOD 1518 * INLINE_METHOD
1519 * MOVE_FILE 1519 * MOVE_FILE
1520 * RENAME 1520 * RENAME
1521 * SORT_MEMBERS
1521 * } 1522 * }
1522 */ 1523 */
1523 final Matcher isRefactoringKind = new MatchesEnum("RefactoringKind", [ 1524 final Matcher isRefactoringKind = new MatchesEnum("RefactoringKind", [
1524 "CONVERT_GETTER_TO_METHOD", 1525 "CONVERT_GETTER_TO_METHOD",
1525 "CONVERT_METHOD_TO_GETTER", 1526 "CONVERT_METHOD_TO_GETTER",
1526 "EXTRACT_LOCAL_VARIABLE", 1527 "EXTRACT_LOCAL_VARIABLE",
1527 "EXTRACT_METHOD", 1528 "EXTRACT_METHOD",
1528 "INLINE_LOCAL_VARIABLE", 1529 "INLINE_LOCAL_VARIABLE",
1529 "INLINE_METHOD", 1530 "INLINE_METHOD",
1530 "MOVE_FILE", 1531 "MOVE_FILE",
1531 "RENAME" 1532 "RENAME",
1533 "SORT_MEMBERS"
1532 ]); 1534 ]);
1533 1535
1534 /** 1536 /**
1535 * RefactoringMethodParameter 1537 * RefactoringMethodParameter
1536 * 1538 *
1537 * { 1539 * {
1538 * "id": optional String 1540 * "id": optional String
1539 * "kind": RefactoringMethodParameterKind 1541 * "kind": RefactoringMethodParameterKind
1540 * "type": String 1542 * "type": String
1541 * "name": String 1543 * "name": String
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1999 * 2001 *
2000 * { 2002 * {
2001 * "newName": String 2003 * "newName": String
2002 * } 2004 * }
2003 */ 2005 */
2004 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 2006 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
2005 "rename options", { 2007 "rename options", {
2006 "newName": isString 2008 "newName": isString
2007 })); 2009 }));
2008 2010
2011 /**
2012 * sortMembers feedback
2013 */
2014 final Matcher isSortMembersFeedback = isNull;
2015
2016 /**
2017 * sortMembers options
2018 */
2019 final Matcher isSortMembersOptions = isNull;
2020
OLDNEW
« 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