class Rufo::Formatter
def visit_quoted_symbol_literal(node)
def visit_quoted_symbol_literal(node) # :"foo" # # [:dyna_symbol, exps] _, exps = node # This is `"...":` as a hash key if current_token_kind == :on_tstring_beg consume_token :on_tstring_beg visit exps consume_token :on_label_end else consume_token :on_symbeg visit_exps exps, false, false consume_token :on_tstring_end end end