4 references to ChildrenOrder
IOperationGenerator (4)
IOperationClassWriter.cs (2)
724
Debug.Assert(node.
ChildrenOrder
!= null, $"Encountered null children order for {type.Name}, should have been caught in verifier!");
1153
private static List<string> GetPropertyOrder(Node node) => node.
ChildrenOrder
?.Split(",", StringSplitOptions.RemoveEmptyEntries).Select(s => s.Trim()).ToList() ?? new List<string>();
IOperationClassWriter.Verifier.cs (2)
102
if (node.
ChildrenOrder
is string order)
115
if (node.
ChildrenOrder
is null)