Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: CHANGELOG.md

Issue 1454293002: Copy changes to CHANGELOG.md from stable to bleeding-edge. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698