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

Side by Side Diff: pkg/analyzer/test/services/data/cu_tests.data

Issue 882233004: Async/await/yield[*] support for dart_fmt (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
OLDNEW
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
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* {}
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/services/formatter_impl.dart ('k') | pkg/analyzer/test/services/data/stmt_tests.data » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698