# File lib/ruby2ruby.rb, line 328 def process_dasgn(exp) if exp.size == 1 then exp.shift.to_s else "#{exp.shift} = #{process(exp.shift)}" end end