| // 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(RecordLiteralOnePositionalNoTrailingCommaTest); |
| }); |
| } |
| |
| @reflectiveTest |
| class RecordLiteralOnePositionalNoTrailingCommaTest |
| extends PubPackageResolutionTest { |
| test_argument_invalid() async { |
| await assertErrorsInCode(''' |
| void f((int,) i) { |
| f(('')); |
| } |
| ''', [ |
| error(CompileTimeErrorCode.ARGUMENT_TYPE_NOT_ASSIGNABLE, 24, 2), |
| ]); |
| } |
| |
| test_argument_notParenthesized() async { |
| await assertErrorsInCode(''' |
| void f((int,) i) { |
| f(1); |
| } |
| ''', [ |
| error(CompileTimeErrorCode.ARGUMENT_TYPE_NOT_ASSIGNABLE, 23, 1), |
| ]); |
| } |
| |
| test_argument_parenthesized() async { |
| await assertErrorsInCode(''' |
| void f((int,) i) { |
| f((1)); |
| } |
| ''', [ |
| error( |
| CompileTimeErrorCode.RECORD_LITERAL_ONE_POSITIONAL_NO_TRAILING_COMMA, |
| 23, |
| 3), |
| ]); |
| } |
| |
| test_argument_valid() async { |
| await assertNoErrorsInCode(''' |
| void f((int,) i) { |
| f((1,)); |
| } |
| '''); |
| } |
| |
| test_assignment_invalid() async { |
| await assertErrorsInCode(''' |
| void f((int,) r) { |
| r = (''); |
| } |
| ''', [ |
| error(CompileTimeErrorCode.INVALID_ASSIGNMENT, 25, 4), |
| ]); |
| } |
| |
| test_assignment_notParenthesized() async { |
| await assertErrorsInCode(''' |
| void f((int,) r) { |
| r = 1; |
| } |
| ''', [ |
| error(CompileTimeErrorCode.INVALID_ASSIGNMENT, 25, 1), |
| ]); |
| } |
| |
| test_assignment_parenthesized() async { |
| await assertErrorsInCode(''' |
| void f((int,) r) { |
| r = (1); |
| } |
| ''', [ |
| error( |
| CompileTimeErrorCode.RECORD_LITERAL_ONE_POSITIONAL_NO_TRAILING_COMMA, |
| 25, |
| 3), |
| ]); |
| } |
| |
| test_assignment_valid() async { |
| await assertNoErrorsInCode(''' |
| void f((int,) r) { |
| r = (1,); |
| } |
| '''); |
| } |
| |
| test_declaration() async { |
| await assertErrorsInCode(''' |
| (int,) r = (1); |
| ''', [ |
| error( |
| CompileTimeErrorCode.RECORD_LITERAL_ONE_POSITIONAL_NO_TRAILING_COMMA, |
| 11, |
| 3), |
| ]); |
| } |
| |
| test_declaration_invalid() async { |
| await assertErrorsInCode(''' |
| (int,) r = (''); |
| ''', [ |
| error(CompileTimeErrorCode.INVALID_ASSIGNMENT, 12, 2), |
| ]); |
| } |
| |
| test_declaration_valid() async { |
| await assertNoErrorsInCode(''' |
| (int,) r = (1,); |
| '''); |
| } |
| |
| test_return_blockBody_notParenthesized() async { |
| await assertErrorsInCode(''' |
| (int,) f() { |
| return 1; |
| } |
| ''', [ |
| error(CompileTimeErrorCode.RETURN_OF_INVALID_TYPE_FROM_FUNCTION, 22, 1), |
| ]); |
| } |
| |
| test_return_blockBody_parenthesized() async { |
| await assertErrorsInCode(''' |
| (int,) f() { |
| return (1); |
| } |
| ''', [ |
| error( |
| CompileTimeErrorCode.RECORD_LITERAL_ONE_POSITIONAL_NO_TRAILING_COMMA, |
| 22, |
| 3), |
| ]); |
| } |
| |
| test_return_expressionBody_invalid() async { |
| await assertErrorsInCode(''' |
| (int,) f() => (''); |
| ''', [ |
| error(CompileTimeErrorCode.RETURN_OF_INVALID_TYPE_FROM_FUNCTION, 14, 4), |
| ]); |
| } |
| |
| test_return_expressionBody_notParenthesized() async { |
| await assertErrorsInCode(''' |
| (int,) f() => 1; |
| ''', [ |
| error(CompileTimeErrorCode.RETURN_OF_INVALID_TYPE_FROM_FUNCTION, 14, 1), |
| ]); |
| } |
| |
| test_return_expressionBody_parenthesized() async { |
| await assertErrorsInCode(''' |
| (int,) f() => (1); |
| ''', [ |
| error( |
| CompileTimeErrorCode.RECORD_LITERAL_ONE_POSITIONAL_NO_TRAILING_COMMA, |
| 14, |
| 3), |
| ]); |
| } |
| |
| test_return_invalid() async { |
| await assertErrorsInCode(''' |
| (int,) f() { return (''); } |
| ''', [ |
| error(CompileTimeErrorCode.RETURN_OF_INVALID_TYPE_FROM_FUNCTION, 20, 4), |
| ]); |
| } |
| |
| test_return_valid() async { |
| await assertNoErrorsInCode(''' |
| (int,) f() { return (1,); } |
| '''); |
| } |
| } |