public override void Compile(ICompiler cmp, bool reverse)
 {
     if (base.CapturingGroup != null)
     {
         base.Compile(cmp, reverse);
     }
     if (this.literal != null)
     {
         Literal.CompileLiteral(this.literal, cmp, base.IgnoreCase, reverse);
     }
 }
Esempio n. 2
0
 public override void Compile(ICompiler cmp, bool reverse)
 {
     Literal.CompileLiteral(this.str, cmp, this.ignore, reverse);
 }