Exemple #1
0
 public BatchCompiler(ISyntaxValidator syntaxValidator, ICompileEngine compileEngine)
 {
     this.syntaxValidator = syntaxValidator;
     this.compileEngine   = compileEngine;
 }
Exemple #2
0
 public BatchCompiler()
 {
     syntaxValidator = new SyntaxValidator();
     compileEngine   = new CompileEngine();
 }