class SyntaxTree::AliasNode::AliasArgumentFormatter

def format(q)

def format(q)
  if argument.is_a?(SymbolLiteral)
    q.format(argument.value)
  else
    q.format(argument)
  end
end