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

Unified Diff: tests/language/syncstar_less_than_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/language/syncstar_less_than_test.dart
diff --git a/tests/language/syncstar_less_than_test.dart b/tests/language/syncstar_less_than_test.dart
index db2f6f345984a9fc514d9b11a998f6501077b416..828bf203e17c8298106245d5d8217e97381904f3 100644
--- a/tests/language/syncstar_less_than_test.dart
+++ b/tests/language/syncstar_less_than_test.dart
@@ -4,14 +4,15 @@
import "package:expect/expect.dart";
-@NoInline() @AssumeDynamic()
+@NoInline()
+@AssumeDynamic()
confuse(x) => x;
Iterable<int> foo() sync* {
- var a = confuse(1);
- if (a < 10) {
- yield 2;
- }
+ var a = confuse(1);
+ if (a < 10) {
+ yield 2;
+ }
}
main() {

Powered by Google App Engine
This is Rietveld 408576698