예제 #1
0
 protected Command(IInterpreterCommandInterface interpreter, Memory memory)
 {
     Interpreter = interpreter;
     Memory      = memory;
     Name        = GetType().Name.ToLower();
 }
예제 #2
0
 public Print(IInterpreterCommandInterface interpreter, Memory memory) : base(interpreter, memory)
 {
 }
예제 #3
0
 protected Command(IInterpreterCommandInterface interpreter)
 {
     Interpreter = interpreter;
     Name        = GetName();
 }
예제 #4
0
 public Sub(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }
예제 #5
0
 public EndSetCode(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }
예제 #6
0
 public Call(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }
예제 #7
0
 public Print(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }
예제 #8
0
 public StepOver(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }
예제 #9
0
 public AddBreak(IInterpreterCommandInterface interpreter) : base(interpreter)
 {
 }