| // 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(InvalidRequiredPositionalParamTest); |
| }); |
| } |
| |
| @reflectiveTest |
| class InvalidRequiredPositionalParamTest extends PubPackageResolutionTest { |
| @override |
| void setUp() { |
| super.setUp(); |
| writeTestPackageConfigWithMeta(); |
| } |
| |
| test_ofFunction_first() async { |
| await assertErrorsInCode(r''' |
| import 'package:meta/meta.dart'; |
| |
| m(@required a) => null; |
| ''', [ |
| error(WarningCode.INVALID_REQUIRED_POSITIONAL_PARAM, 36, 11), |
| ]); |
| } |
| |
| test_ofFunction_second() async { |
| await assertErrorsInCode(r''' |
| import 'package:meta/meta.dart'; |
| |
| m(a, @required b) => null; |
| ''', [ |
| error(WarningCode.INVALID_REQUIRED_POSITIONAL_PARAM, 39, 11), |
| ]); |
| } |
| |
| test_ofGenericFunctionType_named() async { |
| await assertErrorsInCode(r''' |
| import 'package:meta/meta.dart'; |
| |
| typedef F = void Function(@required int a); |
| ''', [ |
| error(WarningCode.INVALID_REQUIRED_POSITIONAL_PARAM, 60, 15), |
| ]); |
| } |
| |
| test_ofGenericFunctionType_unnamed() async { |
| await assertErrorsInCode(r''' |
| import 'package:meta/meta.dart'; |
| |
| typedef F = void Function(@required int); |
| ''', [ |
| error(WarningCode.INVALID_REQUIRED_POSITIONAL_PARAM, 60, 13), |
| ]); |
| } |
| |
| test_valid() async { |
| await assertNoErrorsInCode(r''' |
| m1() => null; |
| m2(a) => null; |
| m3(a, b) => null; |
| '''); |
| } |
| } |