1 instantiation of TrieNode
Microsoft.TemplateEngine.Core (1)
Matching\Trie.cs (1)
31current[path[i]] = next = new TrieNode<T>(path[i])
6 references to TrieNode
Microsoft.TemplateEngine.Core (6)
Matching\Trie.cs (4)
11NextNodes = new Dictionary<byte, TrieNode<T>>(); 14public Dictionary<byte, TrieNode<T>> NextNodes { get; } 26Dictionary<byte, TrieNode<T>>? current = NextNodes; 29if (!current.TryGetValue(path[i], out TrieNode<T> next))
Matching\TrieEvaluator.cs (1)
87TrieNode<T> next;
Matching\TriePath.cs (1)
19public TrieNode<T>? CurrentNode { get; set; }