System.Xml.Xsl.XsltOld.Processor.PopDebuggerStack C# (CSharp) Method

PopDebuggerStack() private method

private PopDebuggerStack ( ) : void
return void
        internal void PopDebuggerStack() {
            Debug.Assert(this.Debugger != null, "We don't generate calls this function if ! debugger");
            this.debuggerStack.Pop();
        }

Usage Example

示例#1
0
 internal override void Execute(Processor processor, ActionFrame frame)
 {
     if (frame.State == Initialized)
     {
         processor.PushDebuggerStack();
         processor.OnInstructionExecute();
         processor.PushDebuggerStack();
     }
     base.Execute(processor, frame);
     if (frame.State == Finished)
     {
         processor.PopDebuggerStack();
         processor.PopDebuggerStack();
     }
 }
All Usage Examples Of System.Xml.Xsl.XsltOld.Processor::PopDebuggerStack