fix issue number of link for #3508 in CHANGELOG (#8175) [skip ci]

This commit is contained in:
kenju 2018-06-15 19:12:21 +09:00 committed by Nicolò Ribaudo
parent 814fce946d
commit bc64e02bf8

View File

@ -2452,7 +2452,7 @@ Also, thanks to [@mucsi96](https://github.com/mucsi96) for catching the extraneo
#### Bug Fix
* `babel-core`
* [#3508](https://github.com/babel/babel/pull/3510) Assign `_this` to `this` when there is no `Superclass` in a `Class` when using class properties. Fixes T7364. ([@ehjay](https://github.com/ehjay))
* [#3508](https://github.com/babel/babel/pull/3508) Assign `_this` to `this` when there is no `Superclass` in a `Class` when using class properties. Fixes T7364. ([@ehjay](https://github.com/ehjay))
The fix correctly set this: `var _this;` -> `var _this = this;`