class Sass::Tree::PropNode

def to_src(tabs, opts, fmt)

Other tags:
    See: Node#to_src -
def to_src(tabs, opts, fmt)
  res = declaration(tabs, opts, fmt)
  return res + "#{semi fmt}\n" if children.empty?
  res + children_to_src(tabs, opts, fmt).rstrip + semi(fmt) + "\n"
end