# File lib/monkey/autoloader.rb, line 6
  def const_missing(const_name)
    if respond_to? :parent and parent.autoloader? and not is_a? Monkey::Autoloader
      extend Monkey::Autoloader
      const_missing const_name
    else
      Monkey.invisible(__FILE__) { const_missing_without_detection const_name }
    end
  end