# File lib/treetop/runtime/interval_skip_list/node.rb, line 6
    def initialize(key, height, path)
      super(height)
      @key = key
      @markers = []
      @endpoint_of = []
      update_forward_pointers(path)
      promote_markers(path)
    end