1 write to LeftOfPendingConjunction
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8213this.LeftOfPendingConjunction = leftOfPendingConjunction;
14 references to LeftOfPendingConjunction
Microsoft.CodeAnalysis.CSharp (14)
Binder\UnionMatchingRewriter.cs (7)
354while (rightUnionPattern.LeftOfPendingConjunction is BoundPatternWithUnionMatching other) 360Debug.Assert(rightUnionPattern.LeftOfPendingConjunction is not BoundPatternWithUnionMatching); 361var leftOfPendingConjunction = makeConjunction(node, left, rightUnionPattern.LeftOfPendingConjunction, makeCompilerGenerated: true); 390leftUnionPattern.LeftOfPendingConjunction, 414while (unionPattern.LeftOfPendingConjunction is BoundPatternWithUnionMatching leftUnionPattern) 445BoundPattern? leftOfPendingConjunction = unionPattern.LeftOfPendingConjunction; 485leftOfPendingConjunction = leftUnionPattern.LeftOfPendingConjunction;
BoundTree\BoundPatternWithUnionMatching.cs (2)
15Debug.Assert(InputType.Equals(LeftOfPendingConjunction?.InputType ?? UnionMatchingInputType, TypeCompareKind.AllIgnoreOptions)); 16Debug.Assert(UnionMatchingInputType == (object)(LeftOfPendingConjunction?.NarrowedType ?? InputType));
Generated\BoundNodes.xml.Generated.cs (5)
8232if (!TypeSymbol.Equals(unionMatchingInputType, this.UnionMatchingInputType, TypeCompareKind.ConsiderEverything) || leftOfPendingConjunction != this.LeftOfPendingConjunction || valueProperty != this.ValueProperty || valuePattern != this.ValuePattern || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 10987this.Visit(node.LeftOfPendingConjunction); 12526BoundPattern? leftOfPendingConjunction = (BoundPattern?)this.Visit(node.LeftOfPendingConjunction); 15218BoundPattern? leftOfPendingConjunction = (BoundPattern?)this.Visit(node.LeftOfPendingConjunction); 17463new TreeDumperNode("leftOfPendingConjunction", null, new TreeDumperNode[] { Visit(node.LeftOfPendingConjunction, null) }),