| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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. | 4 // Test switch statement. |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 class Switcher { | 6 class Switcher { |
| 9 | 7 |
| 10 Switcher() { } | 8 Switcher() { } |
| 11 | 9 |
| 12 test1 (val) { | 10 test1 (val) { |
| 13 var x = 0; | 11 var x = 0; |
| 14 switch (val) { | 12 switch (val) { |
| 15 case 1: | 13 case 1: |
| 16 x = 100; break; | 14 x = 100; break; |
| 17 case 2: | 15 case 2: |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 testSwitchIntExpression(2, 11); | 116 testSwitchIntExpression(2, 11); |
| 119 testSwitchIntExpression(3, 11); | 117 testSwitchIntExpression(3, 11); |
| 120 testSwitchIntExpression(4, 21); | 118 testSwitchIntExpression(4, 21); |
| 121 testSwitchIntExpression(5, 21); | 119 testSwitchIntExpression(5, 21); |
| 122 testSwitchIntExpression(6, 31); | 120 testSwitchIntExpression(6, 31); |
| 123 testSwitchIntExpression(7, null); | 121 testSwitchIntExpression(7, null); |
| 124 | 122 |
| 125 testSwitchBool(true, 12); | 123 testSwitchBool(true, 12); |
| 126 testSwitchBool(false, 22); | 124 testSwitchBool(false, 22); |
| 127 } | 125 } |
| OLD | NEW |