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