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

Side by Side Diff: packages/dart_style/test/splitting/parameters.unit

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
(Empty)
1 40 columns |
2 >>> long parameters list, this.field
3 class Foo {
4 Foo(this.first, this.second, this.third, this.fourth);
5 }
6 <<<
7 class Foo {
8 Foo(this.first, this.second,
9 this.third, this.fourth);
10 }
11 >>> indent parameters more if body is a wrapped =>
12 method(int firstArgument, int argumentTwo) => "very long body that must wrap";
13 <<<
14 method(int firstArgument,
15 int argumentTwo) =>
16 "very long body that must wrap";
OLDNEW
« no previous file with comments | « packages/dart_style/test/splitting/parameters.stmt ('k') | packages/dart_style/test/splitting/statements.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698