class SyntaxTree::VarField

def format(q)

def format(q)
  if value == :nil
    q.text("nil")
  elsif value
    q.format(value)
  end
end