Mono.Debugger.Frontend.Command.Repeat C# (CSharp) 메소드

Repeat() 공개 메소드

public Repeat ( Interpreter interpreter ) : void
interpreter Interpreter
리턴 void
        public virtual void Repeat(Interpreter interpreter)
        {
            Execute (interpreter);
        }

Usage Example

예제 #1
0
파일: Main.cs 프로젝트: baulig/debugger
 void execute_command(Command command)
 {
     try {
         if (repeating)
             command.Repeat (Interpreter);
         else
             command.Execute (Interpreter);
     } catch (ST.ThreadAbortException) {
     } catch (ScriptingException ex) {
         Interpreter.Error (ex);
     } catch (TargetException ex) {
         Interpreter.Error (ex);
     } catch (Exception ex) {
         Interpreter.Error (
             "Caught exception while executing command {0}: {1}",
             this, ex);
     }
 }