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

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

Issue 545943003: Include additional information into RenameFeedback. (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 17e4a13aaae400f44014a6c73213a49e5bb91589..25ae5da773df0a1ab1ca266ed7658f54e68052bf 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1918,12 +1918,16 @@ final Matcher isInlineMethodOptions = new LazyMatcher(() => new MatchesJsonObjec
* {
* "offset": int
* "length": int
+ * "elementKindName": String
+ * "oldName": String
* }
*/
final Matcher isRenameFeedback = new LazyMatcher(() => new MatchesJsonObject(
"rename feedback", {
"offset": isInt,
- "length": isInt
+ "length": isInt,
+ "elementKindName": isString,
+ "oldName": isString
}));
/**

Powered by Google App Engine
This is Rietveld 408576698