OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 * Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
3 * for details. All rights reserved. Use of this source code is governed by a | 3 * for details. All rights reserved. Use of this source code is governed by a |
4 * BSD-style license that can be found in the LICENSE file. | 4 * BSD-style license that can be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 // Slightly modified copy of | 7 // Slightly modified copy of |
8 // `co19/src/Language/Statements/Switch/execution_case_t02.dart`. | 8 // `co19/src/Language/Statements/Switch/execution_case_t02.dart`. |
9 | 9 |
10 /** | 10 /** |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 case 5: | 51 case 5: |
52 case 6: | 52 case 6: |
53 default: | 53 default: |
54 } | 54 } |
55 | 55 |
56 return result; | 56 return result; |
57 } | 57 } |
58 | 58 |
59 main() { | 59 main() { |
60 } | 60 } |
OLD | NEW |