Guest User

Untitled

a guest
Apr 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. addCallStackPrint = ->
  2.   _(arguments).map (clazz)->
  3.     _(_.functions clazz.prototype).map (method)->
  4.       originalMethod = clazz.prototype[method]
  5.       clazz.prototype[method] = ->
  6.         log "#{clazz.name}##{method}"
  7.         originalMethod.call arguments
Add Comment
Please, Sign In to add comment