class Sass::Tree::CommentNode

def to_scss(tabs, opts = {})

Other tags:
    See: Node#to_scss -
def to_scss(tabs, opts = {})
  spaces = ('  ' * [tabs - value[/^ */].size, 0].max)
  if silent
    value.gsub(/^[\/ ]\*/, '//').gsub(/ *\*\/$/, '')
  else
    value
  end.gsub(/^/, spaces) + "\n"
end