a-h / templ

A language for writing HTML user interfaces in Go.
https://templ.guide/
MIT License
8.04k stars 264 forks source link

parser: Calling methods on a new line #809

Closed tim-rus closed 3 months ago

tim-rus commented 3 months ago

When I try to write a method call on a new line I get an error expected selector or type assertion, found '.'

templ SomeView() {
    @SomeStruct{}. // <- here
        SomeMethod() { }
}

Go 1.22.4 linux/amd64 Templ v0.2.707