876bb0c494
Slightly tricky block. Many map_literal* tests were modified as they were creating maps with multiple instances of the same key. Bug: Change-Id: I5dcaa458ee8f68a4934950bb32229ff92100149b Reviewed-on: https://dart-review.googlesource.com/9064 Commit-Queue: Ben Konyi <bkonyi@google.com> Reviewed-by: Phil Quitslund <pquitslund@google.com> Reviewed-by: Erik Ernst <eernst@google.com>
23 lines
652 B
Dart
23 lines
652 B
Dart
// 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.
|
|
// Test program for map literals.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
int nextValCtr;
|
|
|
|
get nextVal {
|
|
return nextValCtr++;
|
|
}
|
|
|
|
main() {
|
|
// Map literals with string interpolation in keys.
|
|
nextValCtr = 0;
|
|
var map = {"a$nextVal": "Grey", "a$nextVal": "Poupon"};
|
|
Expect.equals(true, map.containsKey("a0"));
|
|
Expect.equals(true, map.containsKey("a1"));
|
|
Expect.equals("Grey", map["a0"]);
|
|
Expect.equals("Poupon", map["a1"]);
|
|
}
|