class Unparser::Emitter::KwSplat

Emitter for splats

Private Instance Methods

dispatch() click to toggle source
# File lib/unparser/emitter/splat.rb, line 13
def dispatch
  write('**')
  visit(subject)
end