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

Unified 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 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 1788fe2e1adc3bd5f4179a5128c06b2b1504b0d4..11664a3978fcccc547dd41ca9711ebccdbf99d0d 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1132,13 +1132,13 @@ final Matcher isElementKind = new MatchesEnum("ElementKind", [
*
* {
* "file": FilePath
- * "offset": ExecutableKind
+ * "kind": ExecutableKind
* }
*/
final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject(
"ExecutableFile", {
"file": isFilePath,
- "offset": isExecutableKind
+ "kind": isExecutableKind
}));
/**
« 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