class Sass::Tree::Node

def to_sass(options = {})

Returns:
  • (String) - The Sass code corresponding to the node

Parameters:
  • options ({Symbol => Object}) -- An options hash (see {Sass::CSS#initialize})
def to_sass(options = {})
  Sass::Tree::Visitors::Convert.visit(self, options, :sass)
end