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

Side by Side Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 488103003: Add SearchResultKind.UNKNOWN to the analysis server API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/spec/generate_files". 7 // "pkg/analysis_server/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 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1637 1637
1638 /** 1638 /**
1639 * SearchResultKind 1639 * SearchResultKind
1640 * 1640 *
1641 * enum { 1641 * enum {
1642 * DECLARATION 1642 * DECLARATION
1643 * INVOCATION 1643 * INVOCATION
1644 * READ 1644 * READ
1645 * READ_WRITE 1645 * READ_WRITE
1646 * REFERENCE 1646 * REFERENCE
1647 * UNKNOWN
1647 * WRITE 1648 * WRITE
1648 * } 1649 * }
1649 */ 1650 */
1650 final Matcher isSearchResultKind = new MatchesEnum("SearchResultKind", [ 1651 final Matcher isSearchResultKind = new MatchesEnum("SearchResultKind", [
1651 "DECLARATION", 1652 "DECLARATION",
1652 "INVOCATION", 1653 "INVOCATION",
1653 "READ", 1654 "READ",
1654 "READ_WRITE", 1655 "READ_WRITE",
1655 "REFERENCE", 1656 "REFERENCE",
1657 "UNKNOWN",
1656 "WRITE" 1658 "WRITE"
1657 ]); 1659 ]);
1658 1660
1659 /** 1661 /**
1660 * ServerService 1662 * ServerService
1661 * 1663 *
1662 * enum { 1664 * enum {
1663 * STATUS 1665 * STATUS
1664 * } 1666 * }
1665 */ 1667 */
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1890 * 1892 *
1891 * { 1893 * {
1892 * "newName": String 1894 * "newName": String
1893 * } 1895 * }
1894 */ 1896 */
1895 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 1897 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
1896 "rename options", { 1898 "rename options", {
1897 "newName": isString 1899 "newName": isString
1898 })); 1900 }));
1899 1901
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