magicalhobo / SWFWire

Flash Development Tools

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interfaces are declared as classes

magicalhobo opened this issue · comments

Interfaces should be declared with the interface keyword, methods should not have bodies, and there should be no constructor.

public interface ITest {}

Decompiles into:

public class ITest
{
    public function ITest() {}
}

Fixed in latest commit.