Skip to main content

Posts

Showing posts from May, 2014

New site for Dart news and articles

For the latest Dart news, visit our new blog at  https://medium.com/dartlang .

Dart 1.4 Brings Deep Visibility to Run Applications

It’s much easier to improve something if you can measure it. With Dart SDK 1.4, we are announcing Observatory: a comprehensive set of tools for understanding, measuring, and improving your Dart code. As the documentation explains : Observatory allows you to peek inside a running Dart virtual machine (VM) on demand and provides live, immediate reporting of data. You can use it to browse most aspects of an application. The Observatory provides information on garbage collection, the instance count for all in-memory objects by their type, line-by-line code coverage, and even evaluation of arbitrary expressions. It will continue to evolve and improve in future releases. Take a look at the do cumentation and let us know if you have issues or suggestions. Dart 1.4 also includes a number of other fixes, additions and improvements, including: The dartanalyzer command line tool is now 100% Dart and runs without Java. Using dartanalyzer directly or via other tools requires onl

Dart support for Internet Explorer

Dart v1.5, scheduled for late June, will be the last Dart release to support Internet Explorer 9. Dart will continue to support the latest releases of Firefox, Chrome, and Safari, as well as the two most recent releases of Internet Explorer – currently IE10 & IE11. The factors we considered: Most measures show IE9 usage is less than half of IE10 and IE11 combined. The same measures often show IE9 usage trailing IE8. A number of Google properties, including Google Apps, have ended support for IE9 . The Polymer project limits support to IE10+. While we regret the impact to developers who would like to continue to support IE9, we are excited about the improvements this change will allow. For example, releases after Dart v1.5 will be able to use typed arrays across all of our libraries. Typed arrays are a web API for efficient access to raw binary data. Expanded use will help simplify and optimize the Dart SDK and enable developers to build faster and better experiences. P