# File lib/unified_ruby.rb, line 107
  def rewrite_defs(exp)
    # move args up
    args = exp.scope.block.args(true) rescue nil
    exp.insert 3, args if args

    exp
  end