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

Unified Diff: lib/args/args.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
Index: lib/args/args.dart
===================================================================
--- lib/args/args.dart (revision 10860)
+++ lib/args/args.dart (working copy)
@@ -208,7 +208,7 @@
/** Creates a new ArgParser. */
ArgParser()
- : _options = <_Option>{},
+ : _options = <String, _Option>{},
_optionNames = <String>[];
/**
@@ -308,7 +308,7 @@
for (var name in _optionNames) {
var option = _options[name];
if (option.allowMultiple &&
- results[name].length == 0 &&
+ results[name].length == 0 &&
option.defaultValue != null) {
results[name].add(option.defaultValue);
}
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/parser/ListObjectLiterals.dart ('k') | lib/compiler/implementation/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698