class Sass::Importers::Filesystem

def watched_file?(filename)

Other tags:
    See: Base#watched_file? -
def watched_file?(filename)
  # Check against the root with symlinks resolved, since Listen
  # returns fully-resolved paths.
  filename =~ /\.s[ac]ss$/ && filename.start_with?(@real_root + File::SEPARATOR)
end