Coffeescript クラスとサブクラスがあります。サブクラスのコンストラクターから、スーパー実装を呼び出したいと思います。私はこれが好きです:
class MyTestAbstract
constructor: ->
@created_at = new Date()
class MyTestConcrete extends MyTestAbstract
constructor: ->
super
しかし、次の構文エラーが発生します。
/usr/local/lib/node_modules/coffee-script-redux/bin/coffee --source-map -i test_class.coffee
Syntax error on line 7, column 10: unexpected '\n' (\u000A)
4 :
5 : class MyTestConcrete extends MyTestAbstract
6 : constructor: ->
7 : super
^ :~~~~~~~~~^
8 :
ここで何が問題なのですか?
更新: CoffeeScriptRedux の問題のようです。github で問題を作成しました: https://github.com/michaelficarra/CoffeeScriptRedux/issues/244