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
Could it be possible to add lazy initialized fields when using properties? (similar to Lombok's @Getter(lazy=true)
The same syntax could be used, e.g. @val(lazy = true) Object object = <ExpensiveCalculation>;. This should only be added for @val (not for @var,@set,...), as it is only relevant for immutable fields.
The text was updated successfully, but these errors were encountered:
Could it be possible to add lazy initialized fields when using properties? (similar to Lombok's
@Getter(lazy=true)
The same syntax could be used, e.g.
@val(lazy = true) Object object = <ExpensiveCalculation>;
. This should only be added for@val
(not for@var
,@set
,...), as it is only relevant for immutable fields.The text was updated successfully, but these errors were encountered: