class Sass::Tree::Node

def to_scss(options = {})

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

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