class Rufo::Formatter
def visit_hash(node)
def visit_hash(node) # [:hash, elements] _, elements = node check :on_lbrace write "{" next_token if elements # [:assoclist_from_args, elements] push_hash(node) do visit_literal_elements(elements[1]) end else skip_space_or_newline end check :on_rbrace write "}" next_token end