casid / jte-intellij

IntelliJ plugin for jte template files.
https://github.com/casid/jte
Apache License 2.0
23 stars 4 forks source link

Show error message if missing closing brace in Java expression #43

Open casid opened 9 months ago

casid commented 9 months ago
@template.core.components.paragraph(content = @`
    ${localize("foo"}${localize("bar")}<br>${baz()}
`)

Misses a closing brace after localize("foo". Correct is:

@template.core.components.paragraph(content = @`
    ${localize("foo")}${localize("bar")}<br>${baz()}
`)

This should be highlighted by the plugin.