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

Side by Side Diff: pkg/front_end/testcases/fallthrough.dart

Issue 3006963002: Add missing copyright on test cases. (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « pkg/front_end/testcases/escape.dart ('k') | pkg/front_end/testcases/micro.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
1 void main(List<String> args) { 5 void main(List<String> args) {
2 var x = args.length; 6 var x = args.length;
3 switch (x) { 7 switch (x) {
4 case 3: 8 case 3:
5 x = 4; 9 x = 4;
6 case 5: 10 case 5:
7 break; 11 break;
8 case 6: 12 case 6:
9 case 7: 13 case 7:
10 if (args[0] == '') { 14 if (args[0] == '') {
11 break; 15 break;
12 } else { 16 } else {
13 return; 17 return;
14 } 18 }
15 case 4: 19 case 4:
16 } 20 }
17 } 21 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/escape.dart ('k') | pkg/front_end/testcases/micro.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698