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