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