1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/sass/script/unary_operation.rb

25 lines
581 B
Ruby

module Sass::Script
class UnaryOperation # :nodoc:
def initialize(operand, operator)
@operand = operand
@operator = operator
end
def to_s
self.perform.to_s
end
def inspect
"(#{@operator.inspect} #{@operand.inspect})"
end
def perform
operator = "unary_#{@operator}"
literal = @operand.perform
literal.send(operator)
rescue NoMethodError => e
raise e unless e.name.to_s == operator.to_s
raise Sass::SyntaxError.new("Undefined unary operation: \"#{@operator} #{literal}\".")
end
end
end