Added some inline docs

This commit is contained in:
matehat
2010-03-17 03:20:06 -04:00
parent 8d098194dd
commit 5be437deb9
4 changed files with 9 additions and 2 deletions

View File

@@ -386,8 +386,11 @@ exports.CallNode: class CallNode extends BaseNode
i += 1
args.join('')
#### CurryNode
# Node to bind an context and/or some arguments to a function, returning a new function
# After `Underscore.bind` from [Underscore](http://documentcloud.github.com/underscore/).
exports.CurryNode: class CurryNode extends CallNode
type: 'Curry'
code: '''