Exemplo n.º 1
0
 public static Compiler New(TokenEvaluator scrubber)
 {
     return new Compiler(scrubber);
 }
Exemplo n.º 2
0
 public Compiler(TokenEvaluator scrubber)
 {
     Condition.Requires(scrubber).IsNotNull();
     this.TokenScrubber = scrubber;
 }