# File lib/code_analyzer/sexp.rb, line 862
  def remove_line_and_column
    node = self.clone
    last_node = node.last
    if Sexp === last_node && last_node.size == 2 && last_node.first.is_a?(Integer) && last_node.last.is_a?(Integer)
      node.delete_at(-1)
    end
    node.sexp_body.each_with_index do |child, index|
      if Sexp === child
        node[index+1] = child.remove_line_and_column
      end
    end
    node
  end