Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 >>> | |
| 2 class VeryInterestingThing { | |
| 3 factory VeryInterestingThing.fromJson( | |
| 4 mylibrarythathasalongname.JsonData jsonData) => new VeryInterestingThing ( | |
| 5 otherlibrary.InterestingState.fromJson(jsonData.encodedState)); | |
| 6 } | |
| 7 <<< | |
| 8 class VeryInterestingThing { | |
| 9 factory VeryInterestingThing.fromJson( | |
| 10 mylibrarythathasalongname.JsonData jsonData) => | |
| 11 new VeryInterestingThing( | |
| 12 otherlibrary.InterestingState.fromJson(jsonData.encodedState)); | |
| 13 } | |
| OLD | NEW |