# File lib/tree.rb, line 435
    def lastSibling
      isRoot? ? self : parent.children.last
    end