class Unparser::Emitter::Send

Emitter for send

Public Instance Methods

emit_heredoc_reminders() click to toggle source
# File lib/unparser/emitter/send.rb, line 13
def emit_heredoc_reminders
  writer.emit_heredoc_reminders
end
emit_mlhs() click to toggle source
# File lib/unparser/emitter/send.rb, line 9
def emit_mlhs
  writer.emit_mlhs
end

Private Instance Methods

dispatch() click to toggle source
# File lib/unparser/emitter/send.rb, line 19
def dispatch
  writer.dispatch
end
writer() click to toggle source
# File lib/unparser/emitter/send.rb, line 23
def writer
  writer_with(Writer::Send, node)
end