Chromium Code Reviews| Index: CHANGELOG.md |
| diff --git a/CHANGELOG.md b/CHANGELOG.md |
| index 32c31724e794a6aff9eb94fb46051efb34562c10..93739409b54aa646e87766eab983cadf57cf889e 100644 |
| --- a/CHANGELOG.md |
| +++ b/CHANGELOG.md |
| @@ -2,6 +2,13 @@ |
| ### Language |
| +* Support generic methods with erasure. This feature does not introduce |
| + full-fledged support for generic methods, but it bridges the gap to a |
| + full implementation. It allows for declaring type parameters on methods, |
| + passing actual type arguments in function and method invocations, and |
| + getting static checks from the analyzer. The missing part is reification |
| + of type arguments at runtime. For details please check the |
| + [informal specification](https://gist.github.com/eernstg/4353d7b4f669745bed3a5423e04a453c). |
|
Lasse Reichstein Nielsen
2016/11/28 08:55:45
I think this is somewhat too wordy for a CHANGES e
|
| * 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 |