Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: tests/language_2/case_expression_with_assignment_test.dart

Issue 2996533003: Migrate language block 46 - canonical_const ... char_escape. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698