Closed tolmasky closed 9 years ago
for(; index < count; ++index) { } <-- crash
line 83 is:
if ( node.init.type === "VariableDeclaration" && init.blockScopedDeclarations.size > 0) {
should be:
if (node.init && node.init.type === "VariableDeclaration" && init.blockScopedDeclarations.size > 0) {
Thanks, @tolmasky! I'll take a look at this today.
for(; index < count; ++index) { } <-- crash
line 83 is:
should be: