1 write to Children
Microsoft.CodeAnalysis (1)
Operations\OperationNodes.cs (1)
92Children = SetParentOperation(children, this);
11 references to Children
Microsoft.CodeAnalysis (11)
Operations\ControlFlowGraphBuilder.cs (1)
7446children.AddRange(((InvalidOperation)operation).Children);
Operations\IOperation.OperationList.cs (1)
44case InvalidOperation { Children: var children }:
Operations\IOperation.OperationList.Reversed.cs (1)
47case InvalidOperation { Children: var children }:
Operations\OperationCloner.cs (1)
47return new InvalidOperation(VisitArray(((InvalidOperation)operation).Children), ((Operation)operation).OwningSemanticModel, operation.Syntax, operation.Type, operation.GetConstantValue(), operation.IsImplicit);
Operations\OperationNodes.cs (7)
1020 when index < Children.Length 103=> Children[index], 107internal override int ChildOperationsCount => Children.Length; 114if (!Children.IsEmpty) return (true, 0, 0); 116case 0 when previousIndex + 1 < Children.Length: 129int.MaxValue when !Children.IsEmpty => (true, 0, Children.Length - 1),