| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test switch statement using labels. | 4 // Test switch statement using labels. |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 class Switcher { | 6 class Switcher { |
| 9 | 7 |
| 10 Switcher() { } | 8 Switcher() { } |
| 11 | 9 |
| 12 say1 (sound) { | 10 say1 (sound) { |
| 13 var x = 0; | 11 var x = 0; |
| 14 switch (sound) { | 12 switch (sound) { |
| 15 MOO: | 13 MOO: |
| 16 case "moo": | 14 case "moo": |
| 17 x = 100; | 15 x = 100; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 Expect.equals(300, s.say3("dog", "woof")); | 91 Expect.equals(300, s.say3("dog", "woof")); |
| 94 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton? | 92 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton? |
| 95 Expect.equals(400, s.say3("unicorn", "")); // Still dead. | 93 Expect.equals(400, s.say3("unicorn", "")); // Still dead. |
| 96 Expect.equals(500, s.say3("angry bird", "whoooo")); | 94 Expect.equals(500, s.say3("angry bird", "whoooo")); |
| 97 } | 95 } |
| 98 } | 96 } |
| 99 | 97 |
| 100 main() { | 98 main() { |
| 101 SwitchLabelTest.testMain(); | 99 SwitchLabelTest.testMain(); |
| 102 } | 100 } |
| OLD | NEW |