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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/ListObjectLiterals.dart

Issue 10854191: Require two type arguments for map literals (issue 4522). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | « no previous file | lib/args/args.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/javatests/com/google/dart/compiler/parser/ListObjectLiterals.dart
===================================================================
--- compiler/javatests/com/google/dart/compiler/parser/ListObjectLiterals.dart (revision 10860)
+++ compiler/javatests/com/google/dart/compiler/parser/ListObjectLiterals.dart (working copy)
@@ -21,10 +21,10 @@
var l = const [1,2,3];
var m = const <int>[1,2,3];
var n = <int>[1,2,3];
-
+
var o = const {};
- var p = const <int>{};
- var q = <int>{};
+ var p = const <String, int>{};
+ var q = <String, int>{};
var r = const {'a':1, 'b':2, 'c':3};
var s = const <int> {'a':1, 'b':2, 'c':3 };
var t = {'a':1, 'b':2, 'c':3};
« no previous file with comments | « no previous file | lib/args/args.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698