9 references to WordLetter
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\Symbolic\CharKind.cs (1)
43WordLetter => @"\w",
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
297return CharKind.WordLetter;
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Sample.cs (1)
102if (SymbolicRegexMatcher<TSet>.NfaStateHandler.IsNullableFor(this, in statesWrapper, CharKind.WordLetter))
System\Text\RegularExpressions\Symbolic\SymbolicRegexNode.cs (6)
294is_nullable = ((CharKind.Prev(context) & CharKind.WordLetter) ^ (CharKind.Next(context) & CharKind.WordLetter)) != 0; 299is_nullable = ((CharKind.Prev(context) & CharKind.WordLetter) ^ (CharKind.Next(context) & CharKind.WordLetter)) == 0; 2103return (prevKind == CharKind.WordLetter ? contWithNWL : contWithWL) ? 2110return (prevKind == CharKind.WordLetter ? contWithWL : contWithNWL) ?