1 instantiation of Leaf
Microsoft.NET.ProjectData.Tasks (1)
ForwardCompat.cs (1)
758 lastLeaf = new Leaf(prefix + content, globalIndex, indent);
9 references to Leaf
Microsoft.NET.ProjectData.Tasks (9)
ForwardCompat.cs (9)
589 List<Leaf> existingLeaves = ExpandLeaves(existingSection); 598 List<Leaf> candidateLeaves = ExpandLeaves(candidateSection); 599 var candidateByPath = new Dictionary<string, Leaf>(StringComparer.Ordinal); 600 foreach (Leaf leaf in candidateLeaves) 603 foreach (Leaf existingLeaf in existingLeaves) 610 if (!candidateByPath.TryGetValue(existingLeaf.Path, out Leaf? candidateLeaf)) 727 private static List<Leaf> ExpandLeaves(Section section) 729 var leaves = new List<Leaf>(); 731 Leaf? lastLeaf = null;