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