1 write to _nullabilityCache
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexNode.cs (1)
71
_nullabilityCache
= info.StartsWithSomeAnchor && info.CanBeNullable ? new byte[CharKind.ContextLimit] : null;
3 references to _nullabilityCache
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\SymbolicRegexNode.cs (3)
231
return
_nullabilityCache
is null ?
247
byte b = Volatile.Read(ref
_nullabilityCache
[context]);
328
Volatile.Write(ref
_nullabilityCache
[context], is_nullable ? TrueByte : FalseByte);