Beispiel #1
0
 public MatchContext AddUstIfSuccess(Ust ust)
 {
     if (Success && !IgnoreLocations && !ust.TextSpan.IsZero)
     {
         Locations.AddRange(ust.GetRealTextSpans());
     }
     return(this);
 }
Beispiel #2
0
 public MatchContext AddMatch(Ust ust)
 {
     Success = true;
     if (!IgnoreLocations && !ust.TextSpan.IsZero)
     {
         Locations.AddRange(ust.GetRealTextSpans());
     }
     return(this);
 }