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

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

Issue 473763003: Rename 'kindId' to 'kind' in 'edit.getRefactoring'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/integration_test_methods.dart
diff --git a/pkg/analysis_server/test/integration/integration_test_methods.dart b/pkg/analysis_server/test/integration/integration_test_methods.dart
index 5603df52066c264f47913af46f2da86b733f7715..0e13d4b4fa926b2d76d4a39dc04fb25c44032202 100644
--- a/pkg/analysis_server/test/integration/integration_test_methods.dart
+++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
@@ -1102,9 +1102,9 @@ abstract class IntegrationTestMixin {
*
* Parameters
*
- * kindId ( RefactoringKind )
+ * kind ( RefactoringKind )
*
- * The identifier of the kind of refactoring to be performed.
+ * The kind of refactoring to be performed.
*
* file ( FilePath )
*
@@ -1162,9 +1162,9 @@ abstract class IntegrationTestMixin {
* if the change field is omitted or if there are no potential edits for
* the refactoring.
*/
- Future sendEditGetRefactoring(String kindId, String file, int offset, int length, bool validateOnly, {Map<String, dynamic> options, bool checkTypes: true}) {
+ Future sendEditGetRefactoring(String kind, String file, int offset, int length, bool validateOnly, {Map<String, dynamic> options, bool checkTypes: true}) {
Map<String, dynamic> params = {};
- params["kindId"] = kindId;
+ params["kind"] = kind;
params["file"] = file;
params["offset"] = offset;
params["length"] = length;
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698