keturn
05/28/2020, 6:28 PMproject { all X@{ register {
foo(this@X)
}}}
is there a way for that inline receiver function to give the receiver an explicit name, other than this
, instead of using the @
label?Stefan Beyer
05/28/2020, 7:32 PMketurn
05/28/2020, 7:36 PMStefan Beyer
05/28/2020, 7:40 PMproject {
all {
val subProject = this
register {
foo(subProject)
}
}
}
keturn
05/28/2020, 7:43 PM