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
This is very similar to #151 and is occurring on the current master version.
function foo(arg) { const { x: [x], y: [y], } = arg; return x; }
function foo(a){return b}
REPL
Compared with the following correct behaviour:
function foo(arg) { const { x: [x], y: [y], } = arg; return x + y; }
function foo(a){const{x:[b],y:[c]}=a;return b+c}
The text was updated successfully, but these errors were encountered:
Interesting. Thanks. Looks like a bug in DCE. Will try this.
Sorry, something went wrong.
Fixed by #622
Confirmed, my test cases are now working.
No branches or pull requests
This is very similar to #151 and is occurring on the current master version.
Input
Output
REPL
Compared with the following correct behaviour:
Input
Output
REPL
The text was updated successfully, but these errors were encountered: