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

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

Issue 528053002: Rename ExecutableFile.offset to ExecutableFile.kind and fix documentation. (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 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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 "UNIT_TEST_GROUP", 1125 "UNIT_TEST_GROUP",
1126 "UNIT_TEST_TEST", 1126 "UNIT_TEST_TEST",
1127 "UNKNOWN" 1127 "UNKNOWN"
1128 ]); 1128 ]);
1129 1129
1130 /** 1130 /**
1131 * ExecutableFile 1131 * ExecutableFile
1132 * 1132 *
1133 * { 1133 * {
1134 * "file": FilePath 1134 * "file": FilePath
1135 * "offset": ExecutableKind 1135 * "kind": ExecutableKind
1136 * } 1136 * }
1137 */ 1137 */
1138 final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject( 1138 final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject(
1139 "ExecutableFile", { 1139 "ExecutableFile", {
1140 "file": isFilePath, 1140 "file": isFilePath,
1141 "offset": isExecutableKind 1141 "kind": isExecutableKind
1142 })); 1142 }));
1143 1143
1144 /** 1144 /**
1145 * ExecutableKind 1145 * ExecutableKind
1146 * 1146 *
1147 * enum { 1147 * enum {
1148 * CLIENT 1148 * CLIENT
1149 * EITHER 1149 * EITHER
1150 * SERVER 1150 * SERVER
1151 * } 1151 * }
(...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
1914 * 1914 *
1915 * { 1915 * {
1916 * "newName": String 1916 * "newName": String
1917 * } 1917 * }
1918 */ 1918 */
1919 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 1919 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
1920 "rename options", { 1920 "rename options", {
1921 "newName": isString 1921 "newName": isString
1922 })); 1922 }));
1923 1923
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