7mind / izumi

Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
https://izumi.7mind.io
BSD 2-Clause "Simplified" License
613 stars 66 forks source link

distage: support Scala 3 trait constructors #2164

Open neko-kai opened 1 month ago

neko-kai commented 1 month ago

We should be able to generate TraitConstructors and FactoryConstructors for types of form X & Y where

trait X(val a: A) {
  def b: B
}
trait Y(val c: C)