/// <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; } }
/// <summary> /// Records a stack content manipulation event /// </summary> /// <param name="ev">Event information</param> public void RecordStackContentManipulationEvent(StackContentManipulationEvent ev) { StackContentManipulations.Add(ev); }