3 instantiations of ProjectElementSiblingEnumerable
Microsoft.Build (3)
Construction\ProjectElementContainer.cs (3)
81: new Collections.ReadOnlyCollection<ProjectElement>(new ProjectElementSiblingEnumerable(FirstChild)); 89internal ProjectElementSiblingEnumerable ChildrenEnumerable => new ProjectElementSiblingEnumerable(FirstChild); 105: new Collections.ReadOnlyCollection<ProjectElement>(new ProjectElementSiblingEnumerable(LastChild, forwards: false));
4 references to ProjectElementSiblingEnumerable
Microsoft.Build (4)
Construction\ProjectElementContainer.cs (3)
89internal ProjectElementSiblingEnumerable ChildrenEnumerable => new ProjectElementSiblingEnumerable(FirstChild); 880private ProjectElementSiblingEnumerable.Enumerator _innerEnumerator; 885_innerEnumerator = new ProjectElementSiblingEnumerable.Enumerator(initial, forwards);
Evaluation\Evaluator.cs (1)
1472private bool EvaluateWhenOrOtherwiseChildren(ProjectElementContainer.ProjectElementSiblingEnumerable children)