removing redundant unary check

This commit is contained in:
Jeremy Ashkenas
2010-01-16 16:49:03 -05:00
parent 9cb0564972
commit 9679fc0b52

View File

@@ -568,7 +568,7 @@ module CoffeeScript
end
def chainable?
CHAINABLE.include?(operator.to_sym) && !unary?
CHAINABLE.include?(operator.to_sym)
end
def compile_node(o)