| 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 class Switcher { | 6 class Switcher { |
| 7 | 7 |
| 8 Switcher() { } | 8 Switcher() { } |
| 9 | 9 |
| 10 say1 (sound) { | 10 say1 (sound) { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 Expect.equals(300, s.say3("dog", "woof")); | 91 Expect.equals(300, s.say3("dog", "woof")); |
| 92 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton? | 92 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton? |
| 93 Expect.equals(400, s.say3("unicorn", "")); // Still dead. | 93 Expect.equals(400, s.say3("unicorn", "")); // Still dead. |
| 94 Expect.equals(500, s.say3("angry bird", "whoooo")); | 94 Expect.equals(500, s.say3("angry bird", "whoooo")); |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 main() { | 98 main() { |
| 99 SwitchLabelTest.testMain(); | 99 SwitchLabelTest.testMain(); |
| 100 } | 100 } |
| OLD | NEW |