Added CHANGELOG.md entry on syntax-only generic methods.

R=lrn@google.com, mit@google.com

Review URL: https://codereview.chromium.org/2532863002 .
This commit is contained in:
Erik Ernst 2016-11-30 13:36:02 +01:00
parent 33303ffea5
commit f2907070d8

View file

@ -2,6 +2,9 @@
### Language
* Support generic method syntax. Type arguments are not available at
runtime. For details, check the
[informal specification](https://gist.github.com/eernstg/4353d7b4f669745bed3a5423e04a453c).
* 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; }`.
Please check the