# File lib/facets/automatic.rb, line 14
  def method_missing( sym, *args, &blk )
    begin
      if Facets.require(self.class, sym)
        return send( sym, *args, &blk )
      end
    rescue LoadError
      super
    end
    super
  end