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

Unified Diff: pkg/analysis_server/test/integration/analysis/error_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/integration/analysis/error_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/error_test.dart b/pkg/analysis_server/test/integration/analysis/error_test.dart
index 6cb028880060ad61f0ad7607e3a8d6ece8007f0c..1c32caa732f173c92872a8d875f78a8e494820c9 100644
--- a/pkg/analysis_server/test/integration/analysis/error_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/error_test.dart
@@ -20,9 +20,7 @@ class AnalysisErrorIntegrationTest
extends AbstractAnalysisServerIntegrationTest {
test_detect_simple_error() {
String pathname = sourcePath('test.dart');
- writeFile(
- pathname,
- '''
+ writeFile(pathname, '''
main() {
print(null) // parse error: missing ';'
}''');
@@ -37,9 +35,7 @@ main() {
test_super_mixins_disabled() async {
String pathname = sourcePath('test.dart');
- writeFile(
- pathname,
- '''
+ writeFile(pathname, '''
class Test extends Object with C {
void foo() {}
}
@@ -79,9 +75,7 @@ abstract class C extends B {
// ]
String pathname = sourcePath('test.dart');
- writeFile(
- pathname,
- '''
+ writeFile(pathname, '''
class Test extends Object with C {
void foo() {}
}

Powered by Google App Engine
This is Rietveld 408576698