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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 574573002: Add SourceFileEdit.time field. (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
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 8956f99f47da6f1568bd3c469c89d44511ee73a8..d28d401dacb4a928f8faa802e2ce453645aca16e 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1767,12 +1767,14 @@ final Matcher isSourceEdit = new LazyMatcher(() => new MatchesJsonObject(
*
* {
* "file": FilePath
+ * "time": int
* "edits": List<SourceEdit>
* }
*/
final Matcher isSourceFileEdit = new LazyMatcher(() => new MatchesJsonObject(
"SourceFileEdit", {
"file": isFilePath,
+ "time": isInt,
"edits": isListOf(isSourceEdit)
}));

Powered by Google App Engine
This is Rietveld 408576698