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
…n Scala3 (#88)
Fixes#33, as well as
`@arg` annotations not working on `case class` arguments (which doesn't
have an open issue)
Just need some special casing for `apply`/`<init>`, both for getting the
`apply` defaults (which are named `<init>$default$n` since they're
shared) and for getting the `apply` parameter annotations (which end up
on the `<init>` method parameters, rather than the `apply` method)
Re-enabled a bunch of previously-disabled tests, and added a new suite
to exercise default parameters in direct/nested scenarios
Currently, default values in
case class
es are not handled correctly in Scala 3.Example:
Scala 2 prints:
Scala 2 prints:
The text was updated successfully, but these errors were encountered: