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