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

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

Issue 2991893002: Remove the uri from the ImportedElements object in the experimental spec API (Closed)
Patch Set: Created 3 years, 5 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/support/protocol_matchers.dart
diff --git a/pkg/analysis_server/test/integration/support/protocol_matchers.dart b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
index 8a688c8b41b5e63ffc746db13a02e9d9d36c5a82..9d6b5860b22377b7d135eea0bdff9462611d7b47 100644
--- a/pkg/analysis_server/test/integration/support/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
@@ -689,18 +689,13 @@ final Matcher isImplementedMember = new LazyMatcher(() => new MatchesJsonObject(
*
* {
* "path": FilePath
- * "uri": String
* "prefix": String
* "elements": List<String>
* }
*/
-final Matcher isImportedElements =
- new LazyMatcher(() => new MatchesJsonObject("ImportedElements", {
- "path": isFilePath,
- "uri": isString,
- "prefix": isString,
- "elements": isListOf(isString)
- }));
+final Matcher isImportedElements = new LazyMatcher(() => new MatchesJsonObject(
+ "ImportedElements",
+ {"path": isFilePath, "prefix": isString, "elements": isListOf(isString)}));
/**
* LinkedEditGroup

Powered by Google App Engine
This is Rietveld 408576698