Chromium Code Reviews| Index: lib/json/json.dart |
| =================================================================== |
| --- lib/json/json.dart (revision 4127) |
| +++ lib/json/json.dart (working copy) |
| @@ -415,7 +415,7 @@ |
| } |
| _parseList() { |
| - List<Object> list = new List<Object>(); |
| + List list = new List(); |
|
antonm
2012/02/14 12:30:55
actually, I wrote this code.
This days I would wr
Anders Johnsen
2012/02/14 12:48:04
I'm fine with "var list = []"!
Right now, the lis
antonm
2012/02/14 13:04:06
I too prefer []/{}, but curious: I thought that Li
Anders Johnsen
2012/02/14 13:13:14
List<double> myList = fromJson["list"]; // of type
|
| _parseSequence(JsonToken.RBRACKET, (JsonToken token) { |
| final value = _parseValue(token); |