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

Side by Side Diff: packages/dart_style/test/whitespace/classes.unit

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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
1 40 columns | 1 40 columns |
2 >>> indentation 2 >>> indentation
3 class A { 3 class A {
4 var z; 4 var z;
5 inc(int x) => ++x; 5 inc(int x) => ++x;
6 foo(int x) { 6 foo(int x) {
7 if (x == 0) { 7 if (x == 0) {
8 return true; 8 return true;
9 }}} 9 }}}
10 <<< 10 <<<
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 <<< 92 <<<
93 class Foo { 93 class Foo {
94 var a = 1; 94 var a = 1;
95 b() {} 95 b() {}
96 c() => null; 96 c() => null;
97 get d {} 97 get d {}
98 get e => null; 98 get e => null;
99 set f(value) {} 99 set f(value) {}
100 set g(value) => null; 100 set g(value) => null;
101 var h = 1; 101 var h = 1;
102 }
103 >>> covariant field (skip: published version of analyzer doesn't support 'covari ant yet')
104 class Foo {
105 covariant var bar;
106 covariant int baz;
107 @wat covariant int zoop;
108 }
109 <<<
110 class Foo {
111 covariant var bar;
112 covariant int baz;
113 @wat
114 covariant int zoop;
102 } 115 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/blocks.stmt ('k') | packages/dart_style/test/whitespace/directives.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698