public HackAssembler(
     ICodeFinder codeFinder,
     ITextCleaner textCleaner,
     ICommandParser commandParser)
 {
     this.codeFinder    = codeFinder;
     this.textCleaner   = textCleaner;
     this.commandParser = commandParser;
 }
Exemple #2
0
 public Command(ICodeFinder codeFinder)
 {
     this.codeFinder = codeFinder;
 }
Exemple #3
0
 public CommandParser(ICodeFinder codeFinder)
 {
     this.codeFinder = codeFinder;
 }