Fix extending of class

This commit is contained in:
Jigar Patel 2019-09-19 11:08:11 +05:30 committed by GitHub
parent 4745f44bc1
commit fd4d2f0c6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -248,7 +248,7 @@ Unlike protected ones, private fields are enforced by the language itself. That'
But if we inherit from `CoffeeMachine`, then we'll have no direct access to `#waterAmount`. We'll need to rely on `waterAmount` getter/setter:
```js
class MegaCoffeeMachine extends CoffeeMachine() {
class MegaCoffeeMachine extends CoffeeMachine {
method() {
*!*
alert( this.#waterAmount ); // Error: can only access from CoffeeMachine