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

Unified Diff: pkg/dev_compiler/test/codegen/async_helper.dart

Issue 2752163002: Format all dart dev compiler files (Closed)
Patch Set: 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
« no previous file with comments | « pkg/dev_compiler/test/closure/closure_type_test.dart ('k') | pkg/dev_compiler/test/codegen/closure.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/test/codegen/async_helper.dart
diff --git a/pkg/dev_compiler/test/codegen/async_helper.dart b/pkg/dev_compiler/test/codegen/async_helper.dart
index be5014fd6efdb7e09e602a8e9a1f62bb3d66bf34..bfde1a48fa5ccc51f7d45a4b1e8650b5e0b148d8 100644
--- a/pkg/dev_compiler/test/codegen/async_helper.dart
+++ b/pkg/dev_compiler/test/codegen/async_helper.dart
@@ -50,7 +50,7 @@ bool get asyncTestStarted => _initialized;
void asyncStart() {
if (_initialized && _asyncLevel == 0) {
throw _buildException('asyncStart() was called even though we are done '
- 'with testing.');
+ 'with testing.');
}
if (!_initialized) {
if (_onAsyncEnd == null) {
@@ -60,7 +60,6 @@ void asyncStart() {
print('unittest-suite-wait-for-done');
_initialized = true;
-
}
_asyncLevel++;
}
@@ -72,7 +71,7 @@ void asyncEnd() {
throw _buildException('asyncEnd() was called before asyncStart().');
} else {
throw _buildException('asyncEnd() was called more often than '
- 'asyncStart().');
+ 'asyncStart().');
}
}
_asyncLevel--;
« no previous file with comments | « pkg/dev_compiler/test/closure/closure_type_test.dart ('k') | pkg/dev_compiler/test/codegen/closure.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698