Skip to content

Instantly share code, notes, and snippets.

@filmic
Forked from highwaycoder/private.coffee
Last active August 29, 2015 14:09
Show Gist options
  • Save filmic/3d4eca5b7426b21a0e5e to your computer and use it in GitHub Desktop.
Save filmic/3d4eca5b7426b21a0e5e to your computer and use it in GitHub Desktop.
class Foo
privateBar = "bar"
getPrivateBar = ->
privateBar
constructor: ->
getPrivateBar = getPrivateBar.bind @
publicBar: () ->
getPrivateBar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment