vendor/plugins/haml/lib/sass/tree/value_node.rb in radiant-0.7.2 vs vendor/plugins/haml/lib/sass/tree/value_node.rb in radiant-0.8.0
- old
+ new
@@ -7,9 +7,13 @@
def initialize(value, style)
@value = value
super(style)
end
+ def ==(other)
+ self.class == other.class && value == other.value && super
+ end
+
def to_s(tabs = 0)
value
end
end
end