* 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
9 lines
103 B
JavaScript
9 lines
103 B
JavaScript
expect(
|
|
() => do {
|
|
() => {
|
|
var bar = "foo";
|
|
};
|
|
bar;
|
|
}
|
|
).toThrow(ReferenceError);
|