この質問に対する簡潔な答えが見つからないようです。関数バインディング自体の代わりに @_instanceMethod を呼び出すときに、_otherInstanceMethod から値を返す正しい coffeescriptic の方法は何ですか?
x = _instanceMethod: () ->
@_otherInstanceMethod key: 'value'
編集(コメントありがとうございます)
これは以下を返します:
x = function () {
[...] # function body omitted
});
それ以外の
x = 'some value returned by _otherInstanceMethod'
_otherInstanceMethod にバインドする関数の代わりに値を返したい