-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Combined var statement with more than two vars doesn't work #2593
Comments
I just bisected this to confirm and got the following output:
|
Deraen
changed the title
Combined var statement with more than two vars doesn't work
Combined var statement with more than two vars with require doesn't work
Aug 1, 2017
In fact this is not related to foo.js var first = 1,
second = 2,
third = 3,
fourth = 4,
fifth = 5;
module.exports = {};
|
Deraen
changed the title
Combined var statement with more than two vars with require doesn't work
Combined var statement with more than two vars doesn't work
Aug 1, 2017
I can confirm this was fixed by #2596 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to #2450, #2579, 8fc8229
We just tested and debugged Closure-compiler master with ClojureScript with @anmonteiro and we found out that 8fc8229 breaks for example Lodash which worked previously. One of the problematic files is https://unpkg.com/[email protected]/_baseGetTag.js which has combined var statement with three vars. Only the two first vars are processed.
Here is a simple test case:
foo.js
bar.js
test and output
The text was updated successfully, but these errors were encountered: