[flip-patterns] Update switch tests now that break is no longer required.

Change-Id: If32a8133f89a0ee5e0961657b8fc461b30561226
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/286869
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Jake Macdonald <jakemac@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
This commit is contained in:
Robert Nystrom 2023-03-06 15:48:25 +00:00 committed by Commit Queue
parent 9aa70fbdf7
commit 872422fa22
2 changed files with 4 additions and 4 deletions

View file

@ -2,6 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// SharedOptions=--enable-experiment=patterns,records
/// Check that default clause must be last case.
main() {
@ -11,8 +13,6 @@ main() {
case 1: x = 1; break;
case 6: x = 2; break S;
default:
// ^
// [cfe] Switch case may fall through to the next case.
case 8: break;
// ^^^^
// [analyzer] SYNTACTIC_ERROR.SWITCH_HAS_CASE_AFTER_DEFAULT_CASE

View file

@ -2,6 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// SharedOptions=--enable-experiment=patterns,records
/// Discover unresolved case labels.
main() {
@ -9,8 +11,6 @@ main() {
var x;
switch (a) {
case 1:
// ^
// [cfe] Switch case may fall through to the next case.
x = 1;
continue L;
// ^