blob: b5988f2ed2849c33ded726418b678c53fa5b971c [file]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// 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.
import 'package:analyzer/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ContinueLabelInvalidTest);
});
}
@reflectiveTest
class ContinueLabelInvalidTest extends PubPackageResolutionTest {
test_onBlock() async {
await assertErrorsInCode(
r'''
void f() {
L:
{
for (var i in []) {
continue L;
}
}
}
''',
[
error(WarningCode.unusedLocalVariable, 33, 1),
error(CompileTimeErrorCode.continueLabelInvalid, 50, 11),
],
);
}
test_onSwitchStatement() async {
await assertErrorsInCode(
r'''
void f(int x) {
L: switch (x) {
case 0:
continue L;
}
}
''',
[error(CompileTimeErrorCode.continueLabelInvalid, 52, 11)],
);
}
test_onSwitchStatement_language219() async {
await assertErrorsInCode(
r'''
// @dart = 2.19
void f(int x) {
L: switch (x) {
case 0:
continue L;
}
}
''',
[error(CompileTimeErrorCode.continueLabelInvalid, 68, 11)],
);
}
}