hhvm / hhast

Mutable AST library for Hack with linting and code migrations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove MethodCallOnConstructorLinter, since this is a parse error in modern Hack

lexidor opened this issue · comments

function main(): void {
    new AClass()->func();
}

class AClass {
    public function func(): void {}
}

image