blob: 1d8872caa6efc43c4fa547e014523222337b8642 [file] [log] [blame]
// Copyright (c) 2011, 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.
// @dart = 2.9
/// @assertion A map literal denotes a map object.
/// mapLiteral:
/// const? typeArguments? '{' (mapLiteralEntry (',' mapLiteralEntry)* ','?)?
/// '}'
/// ;
/// mapLiteralEntry:
/// expression ':' expression
/// ;
/// A map literal consists of zero or more entries. Each entry has a key and a
/// value. Each key and each value is denoted by an expression.
/// @description Checks that it is a compile-time error if a map literal
/// does not end with '}'.
/// @author msyabro
/// @reviewer kaigorodov
main() {
// ^
// [cfe] unspecified
try {
//^
// [analyzer] unspecified
// [cfe] unspecified
var x = {"key1": true, "key2":false;
// ^
// [analyzer] unspecified
// [cfe] unspecified
} catch (e) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
// [error line 40, column 0]
// [analyzer] unspecified
}