示例#1
0
 public static Compiler New(TokenEvaluator scrubber)
 {
     return new Compiler(scrubber);
 }
示例#2
0
 public Compiler(TokenEvaluator scrubber)
 {
     Condition.Requires(scrubber).IsNotNull();
     this.TokenScrubber = scrubber;
 }