Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: tests/language/src/MapLiteral2Test.dart

Issue 8318031: Interpolated strings are never considered compile time const (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/language.status ('k') | tests/language/src/StringInterpolation7NegativeTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/MapLiteral2Test.dart
===================================================================
--- tests/language/src/MapLiteral2Test.dart (revision 491)
+++ tests/language/src/MapLiteral2Test.dart (working copy)
@@ -3,36 +3,18 @@
// BSD-style license that can be found in the LICENSE file.
// Test program for map literals.
-final AA = 1;
-final BB = 2;
-
int nextValCtr;
get nextVal() {
return nextValCtr++;
}
-class MapLiteral2Test {
- static testMain() {
- // Map literals with string interpolation in keys.
- var map = const { "a$AA": 88, "b$BB": 99 };
- Expect.equals(2, map.length);
- Expect.equals("a1", "a$AA");
- Expect.equals(88, map["a1"]);
- Expect.equals("b2", "b$BB");
- Expect.equals(99, map["b2"]);
-
- nextValCtr = 0;
- 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"]);
- }
-}
-
-
-
main() {
- MapLiteral2Test.testMain();
+ // 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"]);
}
« no previous file with comments | « tests/language/language.status ('k') | tests/language/src/StringInterpolation7NegativeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698