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

Unified Diff: pkg/analysis_server/test/services/refactoring/inline_local_test.dart

Issue 2669353002: Stop using Element.computeNode() in refactorings and fixes. (Closed)
Patch Set: documentation comments Created 3 years, 11 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/services/refactoring/inline_local_test.dart
diff --git a/pkg/analysis_server/test/services/refactoring/inline_local_test.dart b/pkg/analysis_server/test/services/refactoring/inline_local_test.dart
index 674b5a79baf0ded0a125d4156253df36bdf6f88d..5bd5cf939cecb2471bb824e075862f1f729ed20d 100644
--- a/pkg/analysis_server/test/services/refactoring/inline_local_test.dart
+++ b/pkg/analysis_server/test/services/refactoring/inline_local_test.dart
@@ -636,7 +636,8 @@ main() {
void _createRefactoring(String search) {
int offset = findOffset(search);
- refactoring = new InlineLocalRefactoring(searchEngine, testUnit, offset);
+ refactoring =
+ new InlineLocalRefactoring(searchEngine, astProvider, testUnit, offset);
}
}

Powered by Google App Engine
This is Rietveld 408576698