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
function t() { if (a) { ... } return; }
should be transformed to
function t() { if (a) { ... } }
function f() { return void 0; }
to
function t() { }
We should check control flow and eliminate wasted return statement.
The text was updated successfully, but these errors were encountered:
a, void b
void a
Quoted:
function a(a){return void a()}
which would hopefully be further reduced to this program:
function a(a){a()}
Sorry, something went wrong.
No branches or pull requests
should be transformed to
to
We should check control flow and eliminate wasted return statement.
The text was updated successfully, but these errors were encountered: