# File lib/ruby2ruby.rb, line 639 def process_next(exp) val = exp.empty? ? nil : process(exp.shift) if val then "next #{val}" else "next" end end