# File lib/tree.rb, line 349
    def firstSibling
      if isRoot?
        self
      else
        parent.children.first
      end
    end