OnInstructionExecute() private method

private OnInstructionExecute ( ) : void
return void
コード例 #1
0
 internal override void Execute(Processor processor, ActionFrame frame)
 {
     if (frame.State == Initialized)
     {
         processor.OnInstructionExecute();
     }
     base.Execute(processor, frame);
 }
コード例 #2
0
ファイル: DbgCompiler.cs プロジェクト: z77ma/runtime
 internal override void Execute(Processor processor, ActionFrame frame)
 {
     if (frame.State == Initialized)
     {
         processor.PushDebuggerStack();
         processor.OnInstructionExecute();
     }
     base.Execute(processor, frame);
     if (frame.State == Finished)
     {
         processor.PopDebuggerStack();
     }
 }
コード例 #3
0
ファイル: Event.cs プロジェクト: iskiselev/JSIL.NetFramework
 internal void OnInstructionExecute(Processor processor) {
     Debug.Assert(processor.Debugger != null, "We don't generate calls this function if ! debugger");
     Debug.Assert(DbgData.StyleSheet != null, "We call this function from *EventDbg only");
     processor.OnInstructionExecute();
 }
コード例 #4
0
 internal void OnInstructionExecute(Processor processor)
 {
     Debug.Assert(processor.Debugger != null, "We don't generate calls this function if ! debugger");
     Debug.Assert(DbgData.StyleSheet != null, "We call this function from *EventDbg only");
     processor.OnInstructionExecute();
 }
コード例 #5
0
 internal override void Execute(Processor processor, ActionFrame frame) {
     if(frame.State == Initialized) {
         processor.OnInstructionExecute();
     }
     base.Execute(processor, frame);
 }
コード例 #6
0
 internal override void Execute(Processor processor, ActionFrame frame) {
     if(frame.State == Initialized) {
         processor.PushDebuggerStack();
         processor.OnInstructionExecute();
     }
     base.Execute(processor, frame);
     if (frame.State == Finished) {
         processor.PopDebuggerStack();
     }
 }