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

Unified Diff: pkg/analyzer/lib/file_system/physical_file_system.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/analyzer/lib/file_system/memory_file_system.dart ('k') | pkg/analyzer/lib/formatter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/file_system/physical_file_system.dart
diff --git a/pkg/analyzer/lib/file_system/physical_file_system.dart b/pkg/analyzer/lib/file_system/physical_file_system.dart
index 17c51e620554beae0c44158bd4544b7a9802b97c..431e92ca25a9a41c06dd56797e5ee2c0ea047ea0 100644
--- a/pkg/analyzer/lib/file_system/physical_file_system.dart
+++ b/pkg/analyzer/lib/file_system/physical_file_system.dart
@@ -53,7 +53,8 @@ class PhysicalResourceProvider implements ResourceProvider {
home = io.Platform.environment['HOME'];
}
if (home != null && io.FileSystemEntity.isDirectorySync(home)) {
- io.Directory directory = new io.Directory(join(home, SERVER_DIR, pluginId));
+ io.Directory directory =
+ new io.Directory(join(home, SERVER_DIR, pluginId));
directory.createSync(recursive: true);
return new _PhysicalFolder(directory);
}
« no previous file with comments | « pkg/analyzer/lib/file_system/memory_file_system.dart ('k') | pkg/analyzer/lib/formatter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698