# File lib/sup/thread.rb, line 174 def descendant_of? o if o == self true else @parent && @parent.descendant_of?(o) end end