| // Copyright (c) 2019, 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(UnusedLabelTest); |
| defineReflectiveTests(UnusedLabelTest_Language219); |
| }); |
| } |
| |
| @reflectiveTest |
| class UnusedLabelTest extends PubPackageResolutionTest |
| with UnusedLabelTestCases {} |
| |
| @reflectiveTest |
| class UnusedLabelTest_Language219 extends PubPackageResolutionTest |
| with WithLanguage219Mixin, UnusedLabelTestCases {} |
| |
| mixin UnusedLabelTestCases on PubPackageResolutionTest { |
| test_unused_inSwitch() async { |
| await assertErrorsInCode(r''' |
| f(x) { |
| switch (x) { |
| label: case 0: |
| break; |
| default: |
| break; |
| } |
| } |
| ''', [ |
| error(WarningCode.UNUSED_LABEL, 26, 6), |
| ]); |
| } |
| |
| test_unused_onWhile() async { |
| await assertErrorsInCode(r''' |
| f(condition()) { |
| label: while (condition()) { |
| break; |
| } |
| } |
| ''', [ |
| error(WarningCode.UNUSED_LABEL, 19, 6), |
| ]); |
| } |
| |
| test_used_inSwitch() async { |
| await assertNoErrorsInCode(r''' |
| f(x) { |
| switch (x) { |
| label: case 0: |
| break; |
| default: |
| continue label; |
| } |
| } |
| '''); |
| } |
| |
| test_used_onWhile() async { |
| await assertNoErrorsInCode(r''' |
| f(condition()) { |
| label: while (condition()) { |
| break label; |
| } |
| } |
| '''); |
| } |
| } |