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

obj.two = ->
  b()
