Beispiel #1
0
 /// <summary>
 /// Pass in the state and the step just executed. We'll temporarily push it
 /// back on the stack to get a full trace.
 /// </summary>
 public void setStackTrace( State s )
 {
     this.trace = s.getStackTrace();
     setValue( "trace", new List<object>( this.trace.frames.Select( f => f.ToStringI() ) ) );
 }