Nathan Weber
Results
2
issues of
Nathan Weber
On `master` this code fails. ``` let a, b; a = 2; // fine b = 2; // error ``` This fixes the issue. Added new test and all existing...
We have code like this, which I believe should be valid. ``` function fooValid1() { let a = 2; [1, 2].forEach((x) => { a = a + x; }); [1,...