class Unparser::Emitter::When

Emitter for when nodes

def dispatch

def dispatch
  write('when ')
  emit_captures
  emit_optional_body(children.last)
end

def emit_captures

def emit_captures
  delimited(captures)
end