v3.0.0
Bug Fixes
Breaking Changes
- use return value from constructor
Before:
class MyValue extends Value
@constructor = 'Hello'After:
class MyValue extends Value
constructor: ->
return 'Hello'(b9e85814)
- use return value from constructor
Before:
class MyConst extends Constant
@constructor = []After:
class MyConst extends Constant
constructor: ->
return [](3620e03b)
- use return value from constructor
Before:
class App extends App
@constructor = []After:
class App extends App
constructor: ->
return [](fda5a79b)