Index: packages/dart_style/test/regression/0000/0060.stmt |
diff --git a/packages/dart_style/test/regression/0000/0060.stmt b/packages/dart_style/test/regression/0000/0060.stmt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2729743639202bfc3acc0ca3847d48db65475546 |
--- /dev/null |
+++ b/packages/dart_style/test/regression/0000/0060.stmt |
@@ -0,0 +1,10 @@ |
+>>> |
+var paths = new Directory(inputDir).listSync() |
+ .where((f) => f is File).map((f) => f.path) |
+ .where((p) => p.endsWith('.dart') && filePattern.hasMatch(p)); |
+<<< |
+var paths = new Directory(inputDir) |
+ .listSync() |
+ .where((f) => f is File) |
+ .map((f) => f.path) |
+ .where((p) => p.endsWith('.dart') && filePattern.hasMatch(p)); |