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

Side by Side Diff: test/regression/250.unit

Issue 1191833002: Split after "=>" if the parameters split. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « test/regression/187.stmt ('k') | test/regression/6.stmt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « test/regression/187.stmt ('k') | test/regression/6.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698