# File lib/monkey/ext/module.rb, line 7
      def nested_method_missing(mod, name, *args, &block)
        Monkey.invisible __FILE__ do
          if respond_to? :parent and parent != self
            parent.send(:nested_method_missing, mod, name, *args, &block)
          else
            mod.send(:method_missing_without_nesting, name, *args) 
          end
        end
      end