Index: tests/language/rewrite_while_test.dart |
diff --git a/tests/language/rewrite_while_test.dart b/tests/language/rewrite_while_test.dart |
index e7375ef927a165711fadff26574d24c72df1156c..c773ee0b67dfdcc491883984b4e4f648699e0cf8 100644 |
--- a/tests/language/rewrite_while_test.dart |
+++ b/tests/language/rewrite_while_test.dart |
@@ -4,55 +4,53 @@ |
import "package:expect/expect.dart"; |
- |
baz() {} |
loop1(x) { |
- var n = 0; |
- while (n < x) { |
- n = n + 1; |
- } |
- return n; |
+ var n = 0; |
+ while (n < x) { |
+ n = n + 1; |
+ } |
+ return n; |
} |
loop2(x) { |
- var n = 0; |
- if (x < 100) { |
- while (n < x) { |
- n = n + 1; |
- } |
+ var n = 0; |
+ if (x < 100) { |
+ while (n < x) { |
+ n = n + 1; |
} |
- baz(); |
- return n; |
+ } |
+ baz(); |
+ return n; |
} |
loop3(x) { |
- var n = 0; |
- if (x < 100) { |
- while (n < x) { |
- n = n + 1; |
- baz(); |
- } |
+ var n = 0; |
+ if (x < 100) { |
+ while (n < x) { |
+ n = n + 1; |
+ baz(); |
} |
- baz(); |
- return n; |
+ } |
+ baz(); |
+ return n; |
} |
loop4(x) { |
- var n = 0; |
- if (x < 100) { |
- while (n < x) { |
- baz(); |
- n = n + 1; |
- } |
+ var n = 0; |
+ if (x < 100) { |
+ while (n < x) { |
+ baz(); |
+ n = n + 1; |
} |
- baz(); |
- return n; |
+ } |
+ baz(); |
+ return n; |
} |
f1(b) { |
- while (b) |
- return 1; |
+ while (b) return 1; |
return 2; |
} |
@@ -65,23 +63,23 @@ f2(b) { |
} |
main() { |
- Expect.equals(0, loop1(-10)); |
- Expect.equals(10, loop1(10)); |
+ Expect.equals(0, loop1(-10)); |
+ Expect.equals(10, loop1(10)); |
- Expect.equals(0, loop2(-10)); |
- Expect.equals(10, loop2(10)); |
- Expect.equals(0, loop2(200)); |
+ Expect.equals(0, loop2(-10)); |
+ Expect.equals(10, loop2(10)); |
+ Expect.equals(0, loop2(200)); |
- Expect.equals(0, loop3(-10)); |
- Expect.equals(10, loop3(10)); |
- Expect.equals(0, loop3(200)); |
+ Expect.equals(0, loop3(-10)); |
+ Expect.equals(10, loop3(10)); |
+ Expect.equals(0, loop3(200)); |
- Expect.equals(0, loop4(-10)); |
- Expect.equals(10, loop4(10)); |
- Expect.equals(0, loop4(200)); |
+ Expect.equals(0, loop4(-10)); |
+ Expect.equals(10, loop4(10)); |
+ Expect.equals(0, loop4(200)); |
- Expect.equals(1, f1(true)); |
- Expect.equals(2, f1(false)); |
- Expect.equals(1, f2(true)); |
- Expect.equals(2, f2(false)); |
+ Expect.equals(1, f1(true)); |
+ Expect.equals(2, f1(false)); |
+ Expect.equals(1, f2(true)); |
+ Expect.equals(2, f2(false)); |
} |