| Index: CHANGELOG.md
|
| diff --git a/CHANGELOG.md b/CHANGELOG.md
|
| index 781e3c9e8d70b01a896da89a636e20144cec9753..5f6d954a7b2be14f41d21f4a0ddb96c5e8fec096 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
|
|
|
|
|