Chromium Code Reviews| Index: CHANGELOG.md |
| diff --git a/CHANGELOG.md b/CHANGELOG.md |
| index 32c31724e794a6aff9eb94fb46051efb34562c10..28cfa011f96ab1e1b11b9fb7f7a2dc7d66c6c93f 100644 |
| --- a/CHANGELOG.md |
| +++ b/CHANGELOG.md |
| @@ -2,6 +2,11 @@ |
| ### Language |
| +* 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. ;-)
|
| + `y` in `class C { var x, y; C(this.x): y = x; }`. |
| + Please check the |
| + [informal specification](https://gist.github.com/eernstg/cff159be9e34d5ea295d8c24b1a3e594) |
| + for details. |
| * Don't warn about switch case fallthrough if the case ends in a `rethrow` |
| statement. |
| * Also don't warn if the entire switch case is wrapped in braces - as long as |