# File lib/facets/more/cut.rb, line 86
  def included( base )
    return unless @points
    points = Hash.new{ |h,k| h[k] = [] }
    base.instance_methods.each do |method|
      @points.each do |advice, pointcut|
        if pointcut[method]
          points[advice] << method
        end
      end
    end
    join( points )
  end