joseph_ivie
11/22/2021, 10:29 PMfun example() {
wrapped with with(SomeDSL)
dslCall()
}
desugars to:
fun example() {
with(SomeDsl) {
dslCall()
}
}
joseph_ivie
11/22/2021, 10:35 PMilya.gorbunov
11/23/2021, 12:02 AMjoseph_ivie
11/23/2021, 4:39 PM