From d9397d8a1600a0454decba7c4fe74348b46e41ab Mon Sep 17 00:00:00 2001 From: William Hesse Date: Wed, 18 Nov 2015 16:45:21 -0800 Subject: [PATCH] Copy changes to CHANGELOG.md from stable to bleeding-edge. BUG= R=kevmoo@google.com Review URL: https://codereview.chromium.org/1454293002 . --- CHANGELOG.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 781e3c9e8d7..5f6d954a7b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ * `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now return `ios`. -## 1.13.0 +## 1.13.0 - 2015-11-18 ### Core library changes * `dart:async` @@ -141,10 +141,14 @@ ### Language changes * Null-aware operators - * `??`: 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`. + * `??`: 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`. ### Core library changes