You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the scala documentation, annotations may apply to classes, variables, types and expressions. Currently, Annotations allows to extract variable annotations from case classes, such as:
caseclassFoo(
@Barfield1: String
)
The aim of this request is to add support for type annotations, such as:
caseclassFoo(
field1: String@Bar
)
The text was updated successfully, but these errors were encountered:
According to the scala documentation, annotations may apply to classes, variables, types and expressions. Currently,
Annotations
allows to extract variable annotations from case classes, such as:The aim of this request is to add support for type annotations, such as:
The text was updated successfully, but these errors were encountered: