class Rake::Scope

def trim(n)

this trim beyond the toplevel scope.
Trim +n+ innermost scope levels from the scope. In no case will
def trim(n)
  result = self
  while n > 0 && !result.empty?
    result = result.tail
    n -= 1
  end
  result
end