Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| 6 `y` in `class C { var x,y; C(this.x): y = x; }`. | |
|
Lasse Reichstein Nielsen
2016/11/29 11:17:28
Nitpick: space before `y` in `var x,y`.
eernst
2016/11/29 11:36:37
Done.
| |
| 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 Loading... | |
| 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. |
| OLD | NEW |