Method: Delorean::Dotted#rewrite

Defined in:
lib/delorean/nodes.rb

#rewrite(context, vcode) ⇒ Object



375
376
377
378
379
380
381
382
383
# File 'lib/delorean/nodes.rb', line 375

def rewrite(context, vcode)
  dcode = d.rewrite(context, vcode)

  if d_rest.text_value.empty?
    dcode
  else
    d_rest.rewrite(context, dcode)
  end
end