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

Side by Side Diff: CHANGELOG.md

Issue 2540643002: Added CHANGELOG.md entry for initializing formal access. (Closed)
Patch Set: Whitespace fix Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.21.0 1 ## 1.21.0
2 2
3 ### Language 3 ### Language
4 4
5 * Support access to initializing formals, e.g., the use of `x` to initialize
kevmoo 2016/11/29 16:28:40 This is done across all tools? Cool!
eernst 2016/11/30 10:46:04 It is now. ;-)
6 `y` in `class C { var x, y; C(this.x): y = x; }`.
7 Please check the
8 [informal specification](https://gist.github.com/eernstg/cff159be9e34d5ea295d8 c24b1a3e594)
9 for details.
5 * Don't warn about switch case fallthrough if the case ends in a `rethrow` 10 * Don't warn about switch case fallthrough if the case ends in a `rethrow`
6 statement. 11 statement.
7 * Also don't warn if the entire switch case is wrapped in braces - as long as 12 * Also don't warn if the entire switch case is wrapped in braces - as long as
8 the block ends with a `break`, `continue`, `rethrow`, `return` or `throw`. 13 the block ends with a `break`, `continue`, `rethrow`, `return` or `throw`.
9 * Allow `=` as well as `:` as separator for named parameter default values. 14 * Allow `=` as well as `:` as separator for named parameter default values.
10 15
11 ### Core library changes 16 ### Core library changes
12 17
13 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument. 18 * `dart:core`: `Set.difference` now takes a `Set<Object>` as argument.
14 19
(...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 they will keep the Dart process alive until they time out. This fixes the 1377 they will keep the Dart process alive until they time out. This fixes the
1373 handling of persistent connections. Previously, the client would shut down 1378 handling of persistent connections. Previously, the client would shut down
1374 immediately after a request. 1379 immediately after a request.
1375 1380
1376 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1381 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1377 default. The new `autoCompress` property can be set to `true` to re-enable 1382 default. The new `autoCompress` property can be set to `true` to re-enable
1378 compression. 1383 compression.
1379 1384
1380 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1385 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1381 which controls how it resolves `package:` URIs. 1386 which controls how it resolves `package:` URIs.
OLDNEW
« 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