# File lib/needle/container.rb, line 62
    def root
      return @root if @root
      return self if parent.nil?
      @root = parent.root
    end