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

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

Issue 533743002: Drop the 'occurrences' field from the EXTRACT_METHOD refactoring feedback. (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 2f10f09a3599be6063a51ac4eaf9b8da6ca16ce1..e0cea8cd068186d4496d6128487043bfe79d4a8c 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1830,7 +1830,6 @@ final Matcher isExtractLocalVariableOptions = new LazyMatcher(() => new MatchesJ
* "names": List<String>
* "canCreateGetter": bool
* "parameters": List<RefactoringMethodParameter>
- * "occurrences": int
* "offsets": List<int>
* "lengths": List<int>
* }
@@ -1843,7 +1842,6 @@ final Matcher isExtractMethodFeedback = new LazyMatcher(() => new MatchesJsonObj
"names": isListOf(isString),
"canCreateGetter": isBool,
"parameters": isListOf(isRefactoringMethodParameter),
- "occurrences": isInt,
"offsets": isListOf(isInt),
"lengths": isListOf(isInt)
}));
« 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