typo for @compile_bitwise_or

This commit is contained in:
Jeremy Ashkenas
2010-03-27 12:13:24 -04:00
parent 9763839ed1
commit 45aae5e322
2 changed files with 2 additions and 2 deletions

View File

@@ -1291,7 +1291,7 @@ exports.PipeNode: class PipeNode extends BaseNode
new OpNode('|', @left, @right).compile o
compile_node: (o) ->
return compile_bitwise_or o unless @right instanceof CallNode and not (@right.is_new or @right.is_super)
return @compile_bitwise_or o unless @right instanceof CallNode and not (@right.is_new or @right.is_super)
@right.args.unshift @left
@right.compile o