class Object


Same as above, except in Object.
#####################################################################

def find_hidden_method(name)

def find_hidden_method(name)
  nil
end

def method_added(name)

BlankSlate class.
Detect method additions to Object and remove them in the
def method_added(name)
  result = blank_slate_method_added(name)
  return result if self != Object
  BlankSlate.hide(name)
  result
end