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

Side by Side Diff: tests/language/switch4_negative_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // Discover unresolved case labels. 4 // Discover unresolved case labels.
5 5
6 class Switch4NegativeTest { 6 class Switch4NegativeTest {
7
8 static testMain() { 7 static testMain() {
9 var a = 5; 8 var a = 5;
10 var x; 9 var x;
11 switch (a) { 10 switch (a) {
12 case 1: x = 1; continue L; // unresolved forward reference 11 case 1:
13 case 6: x = 2; break; 12 x = 1;
14 case 8: break; 13 continue L; // unresolved forward reference
14 case 6:
15 x = 2;
16 break;
17 case 8:
18 break;
15 } 19 }
16 return a; 20 return a;
17 } 21 }
18 } 22 }
19 23
20 main() { 24 main() {
21 Switch4NegativeTest.testMain(); 25 Switch4NegativeTest.testMain();
22 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698