/// <summary>
 /// Records a stack content manipulation event
 /// </summary>
 /// <param name="ev">Event information</param>
 public void RecordStackContentManipulationEvent(StackContentManipulationEvent ev)
 {
     // --- Do not trace POP events
     if (ev.Content != null)
     {
         StackContentEvents[ev.SpValue] = ev;
     }
 }
예제 #2
0
 /// <summary>
 /// Records a stack content manipulation event
 /// </summary>
 /// <param name="ev">Event information</param>
 public void RecordStackContentManipulationEvent(StackContentManipulationEvent ev)
 {
     StackContentManipulations.Add(ev);
 }