# File lib/treetop/compiler/ruby_builder.rb, line 46 def assign(left, right) if left.instance_of? Array self << "#{left.join(', ')} = #{right.join(', ')}" else self << "#{left} = #{right}" end end