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

Unified Diff: pkg/analysis_server/test/services/correction/fix_test.dart

Issue 2930793002: Finish refactoring FixProcessor to use ChangeBuilder (Closed)
Patch Set: Created 3 years, 6 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/correction/fix_test.dart
diff --git a/pkg/analysis_server/test/services/correction/fix_test.dart b/pkg/analysis_server/test/services/correction/fix_test.dart
index 86bbad9f026564fceb930080c185fcfcf921f525..ce3f8c20ecd3efa238ec8e12e35e0efd56637fa0 100644
--- a/pkg/analysis_server/test/services/correction/fix_test.dart
+++ b/pkg/analysis_server/test/services/correction/fix_test.dart
@@ -4530,7 +4530,7 @@ main() {
test(throw 42);
}
-void test(arg0) {
+void test(param0) {
}
''');
}
@@ -4733,7 +4733,7 @@ main() {
test(null);
}
-void test(arg0) {
+void test(param0) {
}
''');
}
@@ -5102,7 +5102,7 @@ class A<T> {
}
class B {
- dynamic compute() {}
+ compute() {}
}
''');
}

Powered by Google App Engine
This is Rietveld 408576698