# File lib/yard/handlers/ruby/class_variable_handler.rb, line 5
  def process
    if statement[0].type == :var_field && statement[0][0].type == :cvar
      name = statement[0][0][0]
      register ClassVariableObject.new(namespace, name) {|o| o.source = statement }
    end
  end