# File lib/brakeman/checks/check_send.rb, line 38
  def get_send exp
    if call? exp
      if @send_methods.include? exp.method
        return exp
      else
        get_send exp.target
      end
    end
  end