magicalhobo / SWFWire

Flash Development Tools

Home Page:http://www.swfwire.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

for .. in loops are not decompiled

magicalhobo opened this issue · comments

This source code:

    var obj:Object = {};
    for(var iter:String in obj)
    {
        trace(iter);
    }

Decompiles into:

    forin(local3.hasNext())
    {
        local1 = String(nextname(undefined, undefined));
        trace();
    }