4 references to _nodeCache
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\Symbolic\SymbolicRegexBuilder.cs (1)
66
/// <summary>Key for the <see cref="
_nodeCache
"/>.</summary>
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (1)
368
(checkThreshold && _builder.
_nodeCache
.Count >= SymbolicRegexThresholds.NfaNodeCountThreshold)) // if # of nodes exceeds the NFA threshold
System\Text\RegularExpressions\Symbolic\SymbolicRegexNode.cs (2)
83
if (!builder.
_nodeCache
.TryGetValue(key, out SymbolicRegexNode<TSet>? node))
86
builder.
_nodeCache
[key] = node;