class Sass::Engine

def validate_and_append_child(parent, child, line, root)

def validate_and_append_child(parent, child, line, root)
  case child
  when Array
    child.each {|c| validate_and_append_child(parent, c, line, root)}
  when Tree::Node
    parent << child
  end
end