class SyntaxTree::AliasNode::AliasArgumentFormatter

value of the symbol directly to look like bare words.
Formats an argument to the alias keyword. For symbol literals it uses the

def comments

def comments
  if argument.is_a?(SymbolLiteral)
    argument.comments + argument.value.comments
  else
    argument.comments
  end
end

def format(q)

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

def initialize(argument)

def initialize(argument)
  @argument = argument
end