Files
sdk/tests/corelib
lrn@google.com 8bba32d131 Make String.fromCharCodes take start/end.
This avoids having to make a sublist of a list of character codes before passing it to String.fromCharCodes.

    new String.fromCharCodes(codes.sublist(start, end))

becomes just

    new String.fromCharCodes(codes, start, end)

R=floitsch@google.com, sgjesse@google.com

Review URL: https://codereview.chromium.org//515183002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40672 260f80e4-7a28-3924-810f-c04153c831b5
2014-09-25 10:45:24 +00:00
..
2014-09-12 06:01:14 +00:00
2013-05-03 12:12:17 +00:00
2013-11-01 17:02:27 +00:00
2013-11-01 17:02:27 +00:00
2013-11-01 17:02:27 +00:00
2013-12-13 12:10:23 +00:00
2013-10-24 08:44:32 +00:00
2014-06-26 11:49:11 +00:00