class Rufo::Formatter
def visit_multiple_assign(node)
def visit_multiple_assign(node) # [:massign, lefts, right] _, lefts, right = node visit_comma_separated_list lefts skip_space # A trailing comma can come after the left hand side, # and we remove it next_token if comma? consume_space track_assignment consume_op "=" visit_assign_value right end