You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to anno...@dartlang.org
Highlights
Observatory is a new tool for performance analysis and introspection of running programs. Observatory is included with the standalone VM and Dartium. Observatory 1.4 includes a CPU profiler, allocation profiler, code coverage, and a hyper linked view into the VM running your program. Read more about Observatory on the Dart website.
Reading files with the Dart VM is up to 6 times faster. You will see improvements for whole-file reads as well as file streaming, especially for larger files.
dartanalyzer is now 100% Dart. No Java needed.
Core SDK
dart:collection
New Map classes - MapBase, UnmodifiableMapBase, MapView, UnmodifiableMapView
dart:convert
JsonEncoder now has a withIndent constructor to create “pretty” output.
dart:io
New named argument for ByteBuilder constructor: ‘copy’.
HttpResponse - new bufferOutput property
HttpResponse - detachSocket added named writeHeaders argument
HttpClient: a number of helper methods have been added
Experimental: ServerSocket reference - Makes it possible to share a ServerSocket across multiple isolates.