# File lib/brakeman/processors/alias_processor.rb, line 1051
  def find_push_target exp
    if call? exp and exp.method == :<<
      find_push_target exp.target
    else
      exp
    end
  end