You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let x = [ 1, 2, 3 ]
for (let x of x)
console.log(x)
works in iojs 2.4.0, but not in the branch next+1 (commit a6b6295).
Now it fails with:
ReferenceError: x is not defined
at Object.<anonymous> (/home/andy/programming/mason3/TEST/class.js:4:15)
at Module._compile (module.js:432:26)
at Object.Module._extensions..js (module.js:450:10)
at Module.load (module.js:353:32)
at Function.Module._load (module.js:308:12)
at Function.Module.runMain (module.js:473:10)
at startup (node.js:117:18)
at node.js:947:3
The text was updated successfully, but these errors were encountered:
As a note: this is technically a backwards-incompatible change on the v8 side.
But evertything is perfectly fine as long as the update to v8 4.5 happens in a major release of node.
This code:
works in iojs 2.4.0, but not in the branch
next+1
(commit a6b6295).Now it fails with:
The text was updated successfully, but these errors were encountered: