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