1 implementation of Condition
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4541public IOperation? Condition { get; }
7 references to Condition
Microsoft.CodeAnalysis (7)
Generated\Operations.Generated.cs (3)
305/// True if the <see cref="Condition" /> is evaluated at start of each loop iteration. 310/// True if the loop has 'Until' loop semantics and the loop is executed while <see cref="Condition" /> is false. 316/// The top condition is preferred and exposed as <see cref="Condition" /> and the bottom condition is ignored and exposed by this property.
Operations\ControlFlowGraphBuilder.cs (4)
3609Debug.Assert(operation.Condition is not null); 3610VisitConditionalBranch(operation.Condition, ref @break, jumpIfTrue: operation.ConditionIsUntil); 3639if (operation.Condition != null) 3641VisitConditionalBranch(operation.Condition, ref start, jumpIfTrue: !operation.ConditionIsUntil);