class Sass::Tree::AttrNode

def invalid_child?(child)

def invalid_child?(child)
  if !child.is_a?(AttrNode) && !child.is_a?(CommentNode)
    "Illegal nesting: Only attributes may be nested beneath attributes."
  end
end