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

Side by Side Diff: packages/dart_style/test/whitespace/methods.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 >>>
3 class A {void x(){}}
4 <<<
5 class A {
6 void x() {}
7 }
8 >>>
9 class A{static bool x(){return true;}}
10 <<<
11 class A {
12 static bool x() {
13 return true;
14 }
15 }
16 >>>
17 class A{int x()=>42+3;}
18 <<<
19 class A {
20 int x() => 42 + 3;
21 }
22 >>> method body
23 class A {
24 foo(path) {
25 var buffer = new StringBuffer();
26 var file = new File(path);
27 return file;
28 }
29 }
30 <<<
31 class A {
32 foo(path) {
33 var buffer = new StringBuffer();
34 var file = new File(path);
35 return file;
36 }
37 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/metadata.unit ('k') | packages/dart_style/test/whitespace/script.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698