7 references to DescribeSet
System.Text.RegularExpressions.Generator (7)
RegexGenerator.Emitter.cs (7)
671lines.Add($"/// <summary>Finds the next index of any character that matches {EscapeXmlComment(DescribeSet(set))}.</summary>"); 1244$"// The pattern begins with {DescribeSet(primarySet.Set)}." : 1245$"// The pattern matches {DescribeSet(primarySet.Set)} at index {primarySet.Distance}."); 1429writer.WriteLine($"// The pattern begins with {DescribeSet(set.Set)}."); 1467writer.Write($"// The pattern begins with an atomic loop for {DescribeSet(target.LoopNode.Str!)}, followed by "); 5597RegexNodeKind.Set => $"Match {DescribeSet(node.Str!)}{direction}.", 5598RegexNodeKind.Setloop or RegexNodeKind.Setloopatomic or RegexNodeKind.Setlazy => $"Match {DescribeSet(node.Str!)} {DescribeLoop(node, rm)}{direction}.",