----
function a () {
  if (x) return b;
  return c;
}
----
a = ->
  if x
    return b
  c
