Skip to content

Instantly share code, notes, and snippets.

@rikukissa
Created October 2, 2013 19:49
Show Gist options
  • Save rikukissa/6799504 to your computer and use it in GitHub Desktop.
Save rikukissa/6799504 to your computer and use it in GitHub Desktop.
class Base
constructor: ->
on: ->
console.log 'base:on', arguments
class Child extends Base
constructor: ->
on: ->
console.log 'child:on', arguments
super
child = new Child()
child.on 'something', -> # Do something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment