what I want to write is something like ``` fun so...
# announcements
g
what I want to write is something like
Copy code
fun someMethod(param: Param) = async -> wrapper -> when {
  is A -> doGoodThings();
  is B -> doBadThings():
}
to have the same meaning as
Copy code
fun someMethod(param: Param) = async {
  wrapper {
    when {
      is A -> doGoodThings();
      is B -> doBadThings():
    }
  }
}