假设我有一个这样的 Coffeescript 类:
class Foo
aVar = 'foo'
someFunction = ->
anotherVar = 'bar'
有没有一种方法可以设置anotherVar
为类变量而不必将其声明为 null,如下所示:
class Foo
aVar = 'foo'
anotherVar = null
someFunction = ->
anotherVar = 'bar'