Does somebody know how to make private, non-static members in CoffeeScript? Currently I\'m doing this, which just uses a public variable starting with an underscore to clari
If you want only separate private memebers from public, just wrap it in $ variable
$: requirements: {} body: null definitions: null
and use @$.requirements
@$.requirements