Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The child class should not be able to access the class field defined by the parent class via super #54054

Closed
Jack-Works opened this issue Apr 28, 2023 · 6 comments Β· Fixed by #54056
Labels
Duplicate An existing issue was already created

Comments

@Jack-Works
Copy link
Contributor

Bug Report

The child class should not be able to access the class field defined by the parent class via super

πŸ”Ž Search Terms

class field super parent

πŸ•— Version & Regression Information

Happens on 5.1.0-beta

⏯ Playground Link

Playground link with relevant code

πŸ’» Code

class T {
    field = () => {}
}
class T2 extends T {
    f() {
        super.field()
//      ~~~~~~~~~~~
    }
}

new T2().f()

πŸ™ Actual behavior

No type error

πŸ™‚ Expected behavior

Type error.

super will look for the parent class, but the class field is always defined on the current instance.

@fatcerberus
Copy link

fatcerberus commented Apr 28, 2023

I don’t think the type system can make this distinction of β€œit’s an instance property of T except in cases where T is accessed through super” so this will likely be closed as a design limitation.

@Jack-Works
Copy link
Contributor Author

fix is available

@Jack-Works
Copy link
Contributor Author

I don’t think the type system can make this distinction of β€œit’s an instance property of T except in cases where T is accessed through super” so this will likely be closed as a design limitation.

image

TypeScript can

@Josh-Cena
Copy link
Contributor

Duplicate of #35314

@RyanCavanaugh RyanCavanaugh added the Duplicate An existing issue was already created label Jun 1, 2023
@microsoft-github-policy-service

This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

@microsoft-github-policy-service

This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants