blob: a56d5b1a3dc84977ad9b616a8adeacf5e05bb7d4 [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 ReturnStatementTest().buildAll();
}
class ReturnStatementTest extends PartialCodeTest {
buildAll() {
buildTests(
'return_statement',
[
new TestDescriptor(
'keyword', 'return', [ParserErrorCode.EXPECTED_TOKEN], "return;",
allFailing: true),
new TestDescriptor('expression', 'return a',
[ParserErrorCode.EXPECTED_TOKEN], "return a;"),
],
PartialCodeTest.statementSuffixes,
head: 'f() { ',
tail: ' }');
}
}