| OLD | NEW |
| 1 >>> | 1 >>> |
| 2 class | 2 class |
| 3 A | 3 A |
| 4 { | 4 { |
| 5 } | 5 } |
| 6 <<< | 6 <<< |
| 7 class A { | 7 class A { |
| 8 } | 8 } |
| 9 >>> dartbug.com/15876 | 9 >>> dartbug.com/15876 |
| 10 // fisk | 10 // fisk |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 <<< | 301 <<< |
| 302 class A { | 302 class A { |
| 303 int a0123456789012345678901234; | 303 int a0123456789012345678901234; |
| 304 int b0123456789012345678901234; | 304 int b0123456789012345678901234; |
| 305 int c0123456789012345678901234; | 305 int c0123456789012345678901234; |
| 306 int d0123456789012345678901234; | 306 int d0123456789012345678901234; |
| 307 A(this.a0123456789012345678901234, this.b0123456789012345678901234, | 307 A(this.a0123456789012345678901234, this.b0123456789012345678901234, |
| 308 this.c0123456789012345678901234, this.d0123456789012345678901234); | 308 this.c0123456789012345678901234, this.d0123456789012345678901234); |
| 309 } | 309 } |
| 310 >>> | 310 >>> |
| 311 main() async { | |
| 312 } | |
| 313 <<< | |
| 314 main() async { | |
| 315 } | |
| 316 >>> | |
| 317 main() async => 0; | |
| 318 <<< | |
| 319 main() async => 0; | |
| 320 >>> | |
| 321 enum Foo { BAR, BAZ } | 311 enum Foo { BAR, BAZ } |
| 322 <<< | 312 <<< |
| 323 enum Foo { | 313 enum Foo { |
| 324 BAR, BAZ | 314 BAR, BAZ |
| 325 } | 315 } |
| 316 >>> |
| 317 get x sync* {} |
| 318 <<< |
| 319 get x sync* {} |
| 320 >>> |
| 321 get x async* {} |
| 322 <<< |
| 323 get x async* {} |
| OLD | NEW |