blob: 13636d77566bab10122df458cb3015badcd4afb9 [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 A record is created using a record expression. The grammar is:
///
/// literal ::= record
/// | // Existing literal productions...
/// record ::= 'const'? '(' recordField ( ',' recordField )* ','? ')'
/// recordField ::= (identifier ':' )? expression
///
/// This is identical to the grammar for a function call argument list. There
/// are a couple of syntactic restrictions not captured by the grammar. It is a
/// compile-time error if a record has any of:
///
/// The same field name more than once.
///
/// Only one positional field and no trailing comma.
///
/// No fields and a trailing comma. The expression (,) isn't allowed.
///
/// A field named hashCode, runtimeType, noSuchMethod, or toString.
///
/// A field name that starts with an underscore.
///
/// A field name that collides with the synthesized getter name of a positional
/// field. For example: ('pos', $1: 'named') since the named field '$1' collides
/// with the getter for the first positional field.
///
/// @description Checks that record expressions may contain collections with
/// control-flow operators
/// @author sgrekhov22@gmail.com
import "../../Utils/expect.dart";
main() {
int i = 1;
int j = 2;
var r1 = ([1, 2, if (j > i) i + j],);
var r2 = (x: [i, if (i > j) 0 else i + j, j]);
Expect.listEquals([1, 2, 3], r1.$1);
Expect.listEquals([1, 3, 2], r2.x);
}