blob: fc25909f0cfa4bc57871f018f55b9f58d6c5e8f4 [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.
/**
* @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 key and a value are
* not separated by a colon.
* @compile-error
* @author msyabro
*/
main() {
var map = {"1" 1};
}