コード例 #1
0
 public HackAssembler(
     ICodeFinder codeFinder,
     ITextCleaner textCleaner,
     ICommandParser commandParser)
 {
     this.codeFinder    = codeFinder;
     this.textCleaner   = textCleaner;
     this.commandParser = commandParser;
 }
コード例 #2
0
ファイル: Command.cs プロジェクト: propes/hackasm-csharp
 public Command(ICodeFinder codeFinder)
 {
     this.codeFinder = codeFinder;
 }
コード例 #3
0
 public CommandParser(ICodeFinder codeFinder)
 {
     this.codeFinder = codeFinder;
 }