blob: 477bc1c355553eb8cb7a0b762ca161007683afba [file] [log] [blame]
// Copyright (c) 2017, 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/dart/error/syntactic_errors.dart';
import 'partial_code_support.dart';
main() {
new BreakStatementTest().buildAll();
}
class BreakStatementTest extends PartialCodeTest {
buildAll() {
buildTests(
'break_statement',
[
new TestDescriptor(
'keyword',
'break',
[
ParserErrorCode.EXPECTED_TOKEN,
ParserErrorCode.BREAK_OUTSIDE_OF_LOOP
],
"break;",
expectedErrorsInValidCode: [
ParserErrorCode.BREAK_OUTSIDE_OF_LOOP
],
failing: ['labeled', 'localFunctionNonVoid']),
new TestDescriptor(
'label', 'break a', [ParserErrorCode.EXPECTED_TOKEN], "break a;"),
],
PartialCodeTest.statementSuffixes,
head: 'f() { ',
tail: ' }');
}
}