----
function one() {
  return a();
}
function two() {
  return b();
}
----
one = ->
  a()

two = ->
  b()
