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

Unified Diff: pkg/analysis_server/test/integration/analysis/update_options_test.dart

Issue 2746333008: Run dartfmt on dart2js codebase. (Closed)
Patch Set: Format all analyzer packages Created 3 years, 9 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/update_options_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/update_options_test.dart b/pkg/analysis_server/test/integration/analysis/update_options_test.dart
index 15ed63a58fd6c36a0d8222acf834064522b96dd3..f230deb35541ea2b3e6958b40a155037a4b41677 100644
--- a/pkg/analysis_server/test/integration/analysis/update_options_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/update_options_test.dart
@@ -32,12 +32,14 @@ class Foo {
''');
standardAnalysisSetup();
- await sendAnalysisUpdateOptions(new AnalysisOptions()..generateHints = false);
+ await sendAnalysisUpdateOptions(
+ new AnalysisOptions()..generateHints = false);
await sendAnalysisReanalyze();
await analysisFinished;
expect(getErrors(pathname), isEmpty);
- await sendAnalysisUpdateOptions(new AnalysisOptions()..generateHints = true);
+ await sendAnalysisUpdateOptions(
+ new AnalysisOptions()..generateHints = true);
await sendAnalysisReanalyze();
await analysisFinished;
expect(getErrors(pathname), hasLength(1));

Powered by Google App Engine
This is Rietveld 408576698