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

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

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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: packages/analyzer/lib/file_system/physical_file_system.dart
diff --git a/analyzer/lib/file_system/physical_file_system.dart b/packages/analyzer/lib/file_system/physical_file_system.dart
similarity index 98%
rename from analyzer/lib/file_system/physical_file_system.dart
rename to packages/analyzer/lib/file_system/physical_file_system.dart
index b8fdcf17199a71049c05b49f9765d16bfa873e2d..303d17562eaf8cfd25109ac772053eec96fb86ca 100644
--- a/analyzer/lib/file_system/physical_file_system.dart
+++ b/packages/analyzer/lib/file_system/physical_file_system.dart
@@ -19,8 +19,8 @@ import 'file_system.dart';
* A `dart:io` based implementation of [ResourceProvider].
*/
class PhysicalResourceProvider implements ResourceProvider {
- static final NORMALIZE_EOL_ALWAYS =
- (String string) => string.replaceAll(new RegExp('\r\n?'), '\n');
+ static final NORMALIZE_EOL_ALWAYS = (String string) =>
+ string.replaceAll(new RegExp('\r\n?'), '\n');
static final PhysicalResourceProvider INSTANCE =
new PhysicalResourceProvider(null);

Powered by Google App Engine
This is Rietveld 408576698