class Unparser::Emitter::Module

Emitter for module nodes

def dispatch

def dispatch
  write('module ')
  visit(name)
  emit_optional_body(body)
  k_end
end