Example #1
0
 ///<summary>
 /// Gets the first descendent.  In any Evaluation tree this will the
 /// Evaluation that was first executed.
 ///</summary>
 public Evaluation getFirstDescendant()
 {
     if (firstChild != null)
     {
         return(firstChild.getFirstDescendant());
     }
     return(this);
 }