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)
83if (!builder._nodeCache.TryGetValue(key, out SymbolicRegexNode<TSet>? node)) 86builder._nodeCache[key] = node;