We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that the As Any plugin doesn't recognize the super keyword and wraps it in a as any.
super
super.DoStuff()
becomes
(super as any).DoStuff()
typescript 4.8.4 ts-migrate 0.1.34
Edit:
This seems to work correctly with simple situations where both classes are in the same file.
class bar { doStuff() { } } class foo extends bar { doStuff() { super.DoStuff() } }
My currently hypothesis is that its a issue when you have classes in different files.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that the As Any plugin doesn't recognize the
super
keyword and wraps it in a as any.becomes
typescript 4.8.4
ts-migrate 0.1.34
Edit:
This seems to work correctly with simple situations where both classes are in the same file.
My currently hypothesis is that its a issue when you have classes in different files.
The text was updated successfully, but these errors were encountered: