protected Command(IInterpreterCommandInterface interpreter, Memory memory) { Interpreter = interpreter; Memory = memory; Name = GetType().Name.ToLower(); }
public Print(IInterpreterCommandInterface interpreter, Memory memory) : base(interpreter, memory) { }
protected Command(IInterpreterCommandInterface interpreter) { Interpreter = interpreter; Name = GetName(); }
public Sub(IInterpreterCommandInterface interpreter) : base(interpreter) { }
public EndSetCode(IInterpreterCommandInterface interpreter) : base(interpreter) { }
public Call(IInterpreterCommandInterface interpreter) : base(interpreter) { }
public Print(IInterpreterCommandInterface interpreter) : base(interpreter) { }
public StepOver(IInterpreterCommandInterface interpreter) : base(interpreter) { }
public AddBreak(IInterpreterCommandInterface interpreter) : base(interpreter) { }