tact-lang / tact-vscode

Tact VS Code plugin
Apache License 2.0
14 stars 7 forks source link

Fix formatting with abstract and extend #15

Closed pizza-777 closed 8 months ago

pizza-777 commented 8 months ago

The description of problem

Before

trait a {
abstract fun b();
}

extends fun a(self: Int) {}

After:

trait a {
   fun b();
}

 fun a(self: Int) {}