1 instantiation of PathTrieLeaf
Microsoft.NET.ProjectData.Tasks (1)
9 references to PathTrieLeaf
Microsoft.NET.ProjectData.Tasks (9)
ProjectDataWriter.cs (9)
1893 var directories = new List<(string DisplayName, PathTrieNode? Dir, PathTrieLeaf? File)>(node.Directories.Count);
1894 var files = new List<(string DisplayName, PathTrieLeaf File)>(node.Files.Count);
1898 if (TryCollapseSingleFileSubtree(kvp.Value, kvp.Key, out PathTrieLeaf leaf, out string leafDisplayName))
1916 foreach (PathTrieLeaf leaf in node.Files)
1928 foreach ((string displayName, PathTrieNode? dir, PathTrieLeaf? file) in directories)
1939 PathTrieLeaf leaf = file!.Value;
1949 foreach ((string displayName, PathTrieLeaf leaf) in files)
1963 out PathTrieLeaf leaf, out string displayName)
1988 public List<PathTrieLeaf> Files { get; } = new();