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