class Sass::Tree::Node

def css_with_sourcemap

Other tags:
    See: Sass::Tree -

Returns:
  • ((String, Sass::Source::Map)) - The resulting CSS and the source map
def css_with_sourcemap
  visitor = Sass::Tree::Visitors::ToCss.new(:build_source_mapping)
  result = visitor.visit(self)
  return result, visitor.source_mapping
end