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

Side by Side Diff: packages/dart_style/test/regression/0000/0043.stmt

Issue 2990843002: Removed fixed dependencies (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
(Empty)
1 >>>
2 switchItUp() {
3 var command = 'CLOSED';
4 switch (command) {
5 case 'CLOSED':
6 executeClosed();
7 continue nowClosed; // Continues executing at the nowClosed label.
8
9 nowClosed: case 'NOW_CLOSED':
10 // Runs for both CLOSED and NOW_CLOSED.
11 executeNowClosed();
12 break;
13 }
14 }
15 <<<
16 switchItUp() {
17 var command = 'CLOSED';
18 switch (command) {
19 case 'CLOSED':
20 executeClosed();
21 continue nowClosed; // Continues executing at the nowClosed label.
22
23 nowClosed:
24 case 'NOW_CLOSED':
25 // Runs for both CLOSED and NOW_CLOSED.
26 executeNowClosed();
27 break;
28 }
29 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/io_test.dart ('k') | packages/dart_style/test/regression/0200/0223.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698