Missing statement in output
Created by: jlongster
A funny edge case:
if(true) {
foo.bar("f")
x = y
}
The output of this file is:
if (true) {
x = y;
}
The foo.bar
is gone. It seems to only happen with a member lookup. Unfortunately for me, it was a console.log
that was missing so it was quite confusing....
Actually, looks like this repros it:
if(true) {
foo.bar
x = y
}