| Index: packages/dart_style/test/regression/0200/0250.unit
|
| diff --git a/packages/dart_style/test/regression/0200/0250.unit b/packages/dart_style/test/regression/0200/0250.unit
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cd3c3f45048dbf6a0c50e0efcd4c3ef5a0f2cc65
|
| --- /dev/null
|
| +++ b/packages/dart_style/test/regression/0200/0250.unit
|
| @@ -0,0 +1,13 @@
|
| +>>>
|
| +class VeryInterestingThing {
|
| + factory VeryInterestingThing.fromJson(
|
| + mylibrarythathasalongname.JsonData jsonData) => new VeryInterestingThing(
|
| + otherlibrary.InterestingState.fromJson(jsonData.encodedState));
|
| +}
|
| +<<<
|
| +class VeryInterestingThing {
|
| + factory VeryInterestingThing.fromJson(
|
| + mylibrarythathasalongname.JsonData jsonData) =>
|
| + new VeryInterestingThing(
|
| + otherlibrary.InterestingState.fromJson(jsonData.encodedState));
|
| +}
|
|
|