class Zanzou::AnyObjectShadow

Shadow for any Ruby objects (except container objects, which needs special Shadow class to handle parent-child relationship). We know nothing about the class, so assume all methods are destructive (pessimistic)

Public Instance Methods

method_missing(name, *args) click to toggle source
# File lib/zanzou.rb, line 192
def method_missing(name, *args)
  return handle_destructive_method_call(name, args)
end