# File lib/rewriter.rb, line 177
  def process_fcall(exp)
    name = exp.shift
    args = process exp.shift
    args[0] = :arglist unless args.nil? # for :fcall with block (:iter)

    return s(:call, nil, name, args)
  end