| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 | 7 |
| 8 baz() {} | 8 baz() {} |
| 9 | 9 |
| 10 loop1(x) { | 10 loop1(x) { |
| 11 var n = 0; | 11 var n = 0; |
| 12 while (n < x) { | 12 while (n < x) { |
| 13 n = n + 1; | 13 n = n + 1; |
| 14 } | 14 } |
| 15 return n; | 15 return n; |
| 16 } | 16 } |
| 17 | 17 |
| 18 loop2(x) { | 18 loop2(x) { |
| 19 var n = 0; | 19 var n = 0; |
| 20 if (x < 100) { | 20 if (x < 100) { |
| 21 while (n < x) { | 21 while (n < x) { |
| 22 n = n + 1; | 22 n = n + 1; |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 baz(); | 25 baz(); |
| 26 return n; | 26 return n; |
| 27 } | 27 } |
| 28 | 28 |
| 29 loop3(x) { |
| 30 var n = 0; |
| 31 if (x < 100) { |
| 32 while (n < x) { |
| 33 n = n + 1; |
| 34 baz(); |
| 35 } |
| 36 } |
| 37 baz(); |
| 38 return n; |
| 39 } |
| 40 |
| 41 loop4(x) { |
| 42 var n = 0; |
| 43 if (x < 100) { |
| 44 while (n < x) { |
| 45 baz(); |
| 46 n = n + 1; |
| 47 } |
| 48 } |
| 49 baz(); |
| 50 return n; |
| 51 } |
| 52 |
| 29 f1(b) { | 53 f1(b) { |
| 30 while (b) | 54 while (b) |
| 31 return 1; | 55 return 1; |
| 32 | 56 |
| 33 return 2; | 57 return 2; |
| 34 } | 58 } |
| 35 | 59 |
| 36 f2(b) { | 60 f2(b) { |
| 37 while (b) { | 61 while (b) { |
| 38 return 1; | 62 return 1; |
| 39 } | 63 } |
| 40 return 2; | 64 return 2; |
| 41 } | 65 } |
| 42 | 66 |
| 43 main() { | 67 main() { |
| 44 Expect.equals(0, loop1(-10)); | 68 Expect.equals(0, loop1(-10)); |
| 45 Expect.equals(10, loop1(10)); | 69 Expect.equals(10, loop1(10)); |
| 46 | 70 |
| 47 Expect.equals(0, loop2(-10)); | 71 Expect.equals(0, loop2(-10)); |
| 48 Expect.equals(10, loop2(10)); | 72 Expect.equals(10, loop2(10)); |
| 49 Expect.equals(0, loop2(200)); | 73 Expect.equals(0, loop2(200)); |
| 50 | 74 |
| 75 Expect.equals(0, loop3(-10)); |
| 76 Expect.equals(10, loop3(10)); |
| 77 Expect.equals(0, loop3(200)); |
| 78 |
| 79 Expect.equals(0, loop4(-10)); |
| 80 Expect.equals(10, loop4(10)); |
| 81 Expect.equals(0, loop4(200)); |
| 82 |
| 51 Expect.equals(1, f1(true)); | 83 Expect.equals(1, f1(true)); |
| 52 Expect.equals(2, f1(false)); | 84 Expect.equals(2, f1(false)); |
| 53 Expect.equals(1, f2(true)); | 85 Expect.equals(1, f2(true)); |
| 54 Expect.equals(2, f2(false)); | 86 Expect.equals(2, f2(false)); |
| 55 } | 87 } |
| OLD | NEW |