Index: packages/dart_style/test/regression/0200/0218.stmt |
diff --git a/packages/dart_style/test/regression/0200/0218.stmt b/packages/dart_style/test/regression/0200/0218.stmt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..93896b8b40c094aa89366e330a2e96f2ef98898f |
--- /dev/null |
+++ b/packages/dart_style/test/regression/0200/0218.stmt |
@@ -0,0 +1,10 @@ |
+>>> (indent 2) |
+ var player = body.animate( |
+ [{"font-size": "500px"}, {"font-size": fontSize}], {"duration": 100}); |
+<<< |
+ var player = body.animate([ |
+ {"font-size": "500px"}, |
+ {"font-size": fontSize} |
+ ], { |
+ "duration": 100 |
+ }); |