blob: 4cd693c7d288a7a03616426e24b34d7349e1d5ca [file] [log] [blame]
// Copyright (c) 2022, 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.
/// @assertion The grammar is:
///
/// // Existing rules:
/// type ::= functionType '?'? // Existing production.
/// | recordType // New production.
/// | typeNotFunction // Existing production.
///
/// typeNotFunction ::= 'void' // Existing production.
/// | recordType // New production.
/// | typeNotVoidNotFunction // Existing production.
///
/// // New rules:
/// recordType ::= '(' recordTypeFields ',' recordTypeNamedFields ')'
/// | '(' recordTypeFields ','? ')'
/// | '(' recordTypeNamedFields ')'
///
/// recordTypeFields ::= recordTypeField ( ',' recordTypeField )*
/// recordTypeField ::= metadata type identifier?
///
/// recordTypeNamedFields ::= '{' recordTypeNamedField
/// ( ',' recordTypeNamedField )* ','? '}'
/// recordTypeNamedField ::= type identifier
/// recordTypeNamedField ::= metadata typedIdentifier
///
/// The grammar is exactly the same as parameterTypeList in function types but
/// without `()`, `required`, and optional positional parameters since those
/// don't apply to record types. A record type can't appear in an extends,
/// implements, with, or mixin on clause, which is enforced by being a
/// production in `type` and not `typeNotVoid`.
///
/// The type () is the type of an empty record with no fields
///
/// @description Checks that the type () is the type of an empty record with no
/// fields
/// @author sgrekhov22@gmail.com
typedef Rec = ();
() foo() => ("",);
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
Record bar(() r) => r;
main() {
Rec r1 = (n: "");
// ^
// [analyzer] unspecified
// [cfe] unspecified
Rec r2 = (1,);
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
() r3 = (n: "x");
// ^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
bar((val: 1));
// ^
// [analyzer] unspecified
// [cfe] unspecified
bar((3.14,));
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}