We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Why you translate static and instance methods, defined as
class Base { static foo() {} bar() {} }
in to
// ... Base.foo = function () { }; Base.prototype.bar = function () { }; // ...
You loses information about function name. Please translate method with
// ... Base.foo = function foo() { }; Base.prototype.bar = function bar() { }; // ...
The text was updated successfully, but these errors were encountered:
We do this as to not break your code, as the identifier foo inside the method body refers to a possible outer foo, not the function itself.
foo
See #5611 for the runtime value of .name.
.name
Sorry, something went wrong.
No branches or pull requests
Why you translate static and instance methods, defined as
in to
You loses information about function name. Please translate method with
The text was updated successfully, but these errors were encountered: