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