Skip to content

Instantly share code, notes, and snippets.

@sergeybe
Last active August 29, 2015 14:12
Show Gist options
  • Save sergeybe/efb40853cb34cf81f087 to your computer and use it in GitHub Desktop.
Save sergeybe/efb40853cb34cf81f087 to your computer and use it in GitHub Desktop.
class A
constructor: (@param) ->
property = 1 # private
method: ->
property + @param
@method: -> #protected
@::property
@method = (param) #static
-> param
object = new A 1
object.method() # 2
object.property # undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment