module SassC::ImportHandler::FileSystemImporter

def try_path_with_ext(path)

def try_path_with_ext(path)
  result = try_path("#{path}.sass") + try_path("#{path}.scss")
  result.empty? ? try_path("#{path}.css") : result
end