# File lib/tree/binarytree.rb, line 61 def add(child) raise "Already has two child nodes" if @children.size == 2 super(child) end