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

Unified Diff: pkg/dev_compiler/tool/global_compile.dart

Issue 2830503002: Run formatter on dev_compiler. (Closed)
Patch Set: Run formatter on dev_compiler. Created 3 years, 8 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/dev_compiler/tool/global_compile.dart
diff --git a/pkg/dev_compiler/tool/global_compile.dart b/pkg/dev_compiler/tool/global_compile.dart
index 56f1b0a5d3f395503b39b1f3e607314da07707b8..c4801162da3b4c7c8429d530267c9e8ac0a7fd92 100644
--- a/pkg/dev_compiler/tool/global_compile.dart
+++ b/pkg/dev_compiler/tool/global_compile.dart
@@ -108,7 +108,8 @@ void main(List<String> args) {
var tmpdir = (tmp == null)
? Directory.systemTemp
.createTempSync(outfile.replaceAll(path.separator, '__'))
- : new Directory(tmp)..createSync();
+ : new Directory(tmp)
+ ..createSync();
for (var module in orderedModules) {
var file = tmpdir.path + path.separator + module + '.js';
var command = template.toList()..addAll(['-o', file]);

Powered by Google App Engine
This is Rietveld 408576698