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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/services/data/cu_tests.data
===================================================================
--- pkg/analyzer/test/services/data/cu_tests.data (revision 43520)
+++ pkg/analyzer/test/services/data/cu_tests.data (working copy)
@@ -308,18 +308,16 @@
this.c0123456789012345678901234, this.d0123456789012345678901234);
}
>>>
-main() async {
-}
+enum Foo { BAR, BAZ }
<<<
-main() async {
+enum Foo {
+ BAR, BAZ
}
>>>
-main() async => 0;
+get x sync* {}
<<<
-main() async => 0;
+get x sync* {}
>>>
-enum Foo { BAR, BAZ }
+get x async* {}
<<<
-enum Foo {
- BAR, BAZ
-}
+get x async* {}

Powered by Google App Engine
This is Rietveld 408576698