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