* fix: hoist variable declaration within do block * test: add input for variable-declaration-start * test: actually write a test for this issue * make prettier happy
3 lines
37 B
JavaScript
3 lines
37 B
JavaScript
var bar;
|
|
var x = (bar = "foo", bar);
|