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

Unified Diff: pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart

Issue 2975253002: Format analyzer, analysis_server, analyzer_plugin, front_end and kernel with the latest dartfmt. (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/services/completion/dart/override_contributor_test.dart
diff --git a/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart
index 96ecf43c438b4c8afc5aeda3068fdd8c10746bde..e0d356c12b2cee3b96c0aeb5b9dc070556873c6b 100644
--- a/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart
+++ b/pkg/analysis_server/test/services/completion/dart/override_contributor_test.dart
@@ -53,9 +53,7 @@ class C extends B {
}
test_fromPart() async {
- addSource(
- '/myLib.dart',
- '''
+ addSource('/myLib.dart', '''
library myLib;
part '$testFile'
part '/otherPart.dart'
@@ -64,9 +62,7 @@ class A {
B suggested2(String y) => null;
}
''');
- addSource(
- '/otherPart.dart',
- '''
+ addSource('/otherPart.dart', '''
part of myLib;
class B extends A {
B suggested2(String y) => null;

Powered by Google App Engine
This is Rietveld 408576698