A.method {
  if(x) {
    return x
  } else {
    return y
  }
  try {
    return 1
  } catch {
    return 2
  } finally {
    return 3
  }
}