Index: CHANGELOG.md |
diff --git a/CHANGELOG.md b/CHANGELOG.md |
index 32c31724e794a6aff9eb94fb46051efb34562c10..9551878f92dd4a19a0776b6567f25e02cd7d6ae4 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 |
+ `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.
|
+ 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 |