Example #1
0
 ///<summary>
 /// Gets the last descendent.  In any Evaluation tree this will the
 /// Evaluation that was most recently executing.
 ///</summary>
 public Evaluation getLastDescendant()
 {
     if (lastChild != null)
     {
         return(lastChild.getLastDescendant());
     }
     return(this);
 }