----
if (w) {
  x(y(function() {
    return true
  }));
  z()
}
----
if w
  x y(->
    true
  )
  z()
