removing the unused CallNode#push

This commit is contained in:
Jeremy Ashkenas
2010-03-10 20:53:31 -05:00
parent 7b0a235c71
commit 3f9fd85afb
2 changed files with 0 additions and 12 deletions

View File

@@ -334,12 +334,6 @@ exports.CallNode: class CallNode extends BaseNode
@prefix: 'new '
this
# Add an argument to the call's arugment list.
push: (arg) ->
@args.push(arg)
@children.push(arg)
this
# Compile a vanilla function call.
compile_node: (o) ->
return @compile_splat(o) if @args[@args.length - 1] instanceof SplatNode