javalang
javalang copied to clipboard
JavaSyntaxError for Multiline Strings in Annotations
When the Annotation has a multiline string parameter, the parser throws a JavaSyntaxError
exception.
@Subselect("""
select t.field
from table t
""")
public class SomeEntity { ... }
The expected behaviour would be to parse the multiline string as regular string parameters for Annotations.
We're also running into this issue with a constant containing a multiline string