次のような Coffeescript クラスがあるとします。
class Foo
aVar = 'foo'
someFunction = ->
anotherVar = 'bar'
anotherVar
次のように、null として宣言せずにクラス変数として設定する方法はありますか。
class Foo
aVar = 'foo'
anotherVar = null
someFunction = ->
anotherVar = 'bar'