# File lib/yard/handlers/ruby/legacy/class_variable_handler.rb, line 5
  def process
    # Don't document @@cvars if they're set in second class objects (methods) because
    # they're not "static" when executed from a method
    return unless owner.is_a? NamespaceObject
    
    name, value = *statement.tokens.to_s.gsub(/\r?\n/, '').split(/\s*=\s*/, 2)
    register ClassVariableObject.new(namespace, name) {|o| o.source = statement }
  end