OLD | NEW |
| (Empty) |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
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. | |
4 | |
5 // Regression test for crash in VM parser (issue 29370). | |
6 | |
7 import "package:expect/expect.dart"; | |
8 | |
9 const ERROR_A = 0; | |
10 const ERROR_B = 1; | |
11 | |
12 errorToString(error) { | |
13 switch (error) { | |
14 case ERROR_A: | |
15 return "ERROR_A"; | |
16 case ERROR_B = 1: //# 01: compile-time error | |
17 case ERROR_B: //# none: ok | |
18 return "ERROR_B"; | |
19 default: | |
20 return "Unknown error"; | |
21 } | |
22 } | |
23 | |
24 main() { | |
25 Expect.equals(errorToString(ERROR_A), "ERROR_A"); | |
26 Expect.equals(errorToString(ERROR_B), "ERROR_B"); | |
27 Expect.equals(errorToString(55), "Unknown error"); | |
28 } | |
OLD | NEW |