class Sass::Engine

def parse_comment(line)

def parse_comment(line)
  if line[1] == SASS_COMMENT_CHAR
    :comment
  elsif line[1] == CSS_COMMENT_CHAR
    Tree::CommentNode.new(line, @options[:style])
  else
    Tree::RuleNode.new(line, @options[:style])
  end
end