# File lib/code_analyzer/sexp.rb, line 431
  def body
    case sexp_type
    when :else
      self[1]
    when :module, :if, :elsif, :unless, :if_mod, :unless_mod, :ifop
      self[2]
    when :class, :def
      self[3]
    when :defs
      self[5]
    end
  end