class Sass::Tree::CommentNode

def ==(other)

Returns:
  • (Boolean) - Whether or not this node and the other object

Parameters:
  • other (Object) -- The object to compare with
def ==(other)
  self.class == other.class && value == other.value && silent == other.silent && lines == other.lines
end