class Sass::Tree::ImportNode

Public Instance Methods

==(other) click to toggle source

Compares the names and values of two imports.

@param other [Object] The object to compare with @return [Boolean] Whether or not this node and the other object

are the same
Calls superclass method
# File lib/scss_lint/sass/tree.rb, line 164
def ==(other)
  self.class == other.class && imported_filename == other.imported_filename && super
end