Skip to main content

Posts

New site for Dart news and articles

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

Dart 1.12 Released, with Null-Aware Operators and more

Dart 1.12.0 is now released ! It contains the new null-aware operators language feature, and enhancements to pub, Observatory, dartdoc, and much more. Null-aware operators The new null-aware operators help you reduce the amount of code required to work with references that are potentially null. This feature is a collection of syntactic sugar for traversing (potentially null) object calls, conditionally setting a variable, and evaluating two (potentially null) expressions. Click or tap the red Run button below to see them in action. ??   if null operator. `expr1 ?? expr2` evaluates to `expr1` if not `null`, otherwise `expr2`. ??=   null-aware assignment. `v ??= expr` causes `v` to be assigned `expr` only if `v` is `null`. x?.p   null-aware access. `x?.p` evaluates to `x.p` if `x` is not `null`, otherwise evaluates to `null`. x?.m()      null-aware method invocation. `x?.m()` invokes `m` only if `x` is not `null`. Learn more ...

A New Way to Share with DartPad

Back in May, we announced the release of DartPad 1.0 , a clean and zero-install tool that helps you explore Dart . To create a seamless learning experience for both experienced and new developers, today we released embeddable pads! You can now add live Dart code to web pages. Embeddable pads have the full power of the standalone DartPad: Tutorials and guides can use embeddings to quickly demonstrate concepts on the fly: You can also open embedded pads in DartPad to further edit and share code. For more information, view the embedding guide . Head over to dartpad.dartlang.org and share your first pad! We hope you enjoy this new addition and provide us with feedback—remember, sharing is caring! Posted by George He, Chief Sharing Operator

5% smaller output from dart2js

dart2js now produces up to 5% smaller output in the latest dev channel release of the Dart SDK. We measured a 5% reduction on the minified and zipped dart2js output for one of the larger Dart-based apps in Google with source code size around 17MB. While we’ve seen a 5% reduction on a large app, your milage may vary and improvements are expected to increase with the size of your app. This improvement comes on top of a previous 3% reduction since the beginning of this year. The idea behind the latest improvement is quite simple: The symbols that will occur most often in the generated output should be assigned the shortest minified names. So when minifying the code, we rename according to the frequency of each symbol in such a way that a high frequency results in a short name in the output. This new frequency-based namer generally produces smaller output, which is great for deployment. It does however also result in different name allocations and thus “diffing” before/after the c...

Null-aware operators and generalized tear-offs in Dart

Yesterday, on June 17, 2015, the 109th Ecma General Assembly approved the ECMA-408 3rd edition - Dart Programming Language Specification . Main additions to the 3rd edition of the spec are null-aware operators and  generalized tear-offs .  Null-aware operators are currently being implemented and tear-offs will follow. The standard has been published on the Ecma Website.

Dart is now on GitHub

Dart is an open-source programming language, with contributors working on the language, libraries, tools, and packages. To make working with our community even easier, today we are announcing that we've fully settled into our new home on GitHub. We invite you to follow along and contribute at https://github.com/dart-lang . The Dart SDK now has its own repository , joining the numerous Dart tools and packages already in our GitHub org . We’ve moved all the SDK issues over (keeping the original issue numbers!), and dartbug.com now points to GitHub's issue tracker for the Dart SDK. Getting the SDK source is easy, and we've documented the contribution workflow . Our development tools are optimized for code reviews on Rietveld , Chromium's code review system, and they make it easy to start a review and cleanly land a patch. For very small patches, contributors can use a standard GitHub pull request. One of the easiest ways to start contributing to Dart is to wor...

Dart Developer Summit videos now available

Dart developers met in San Francisco for two days in April 2015 to share stories, meet engineers, and learn about how to deploy Dart for the web, server, and mobile. If you missed the event, don't worry. You can now watch all the Dart Developer Summit presentations on YouTube . Check out the playlist to see a wide range of content: case studies, insight into new features and libraries (such as async/await ), a game engine built with Dart , deploying Dart to Internet of Things , deploying Dart on the server , using Dart in Google , and much more. We also saw two new interesting experiments to bring Dart to mobile: the Dart for Mobile Services project and the Sky project . A big thank you to everyone that joined us in person and on the live stream. We hope you enjoy the videos , and we'll see you in the Dartiverse!

Announcing DartPad: A friction-free way to explore Dart code

We believe developers deserve a fast iteration cycle, immediate feedback, and zero-install tools as they explore languages and APIs. To help both new and experienced Dart developers, today we are announcing DartPad 1.0, a friction-free way to try Dart code and APIs in your browser. Developers new to Dart can use DartPad to experience the language and libraries. Experienced Dart developers will find DartPad the easiest way to experiment with the core APIs and learn new patterns and idioms. Everyone can use DartPad to share snippets of Dart code. DartPad supports the full Dart language, the core libraries, and even HTML/CSS. Easily discover APIs with DartPad's support for code completion. Quickly find issues in your code with real-time errors and warnings. Learn more about APIs with real-time docs. Easily share your Dart code with DartPad's integration with Github's Gists. We hope developers will find DartPad a useful tool. We're just getting started, and we ap...