1 write to Bindings
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5110this.Bindings = bindings;
12 references to Bindings
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\BoundDecisionDag.cs (1)
131return p.Update(p.Bindings, p.WhenExpression, replacement[p.WhenTrue], (p.WhenFalse != null) ? replacement[p.WhenFalse] : null);
FlowAnalysis\NullableWalker_Patterns.cs (1)
672foreach (var binding in w.Bindings)
Generated\BoundNodes.xml.Generated.cs (3)
5126if (bindings != this.Bindings || whenExpression != this.WhenExpression || whenTrue != this.WhenTrue || whenFalse != this.WhenFalse) 11685return node.Update(node.Bindings, whenExpression, whenTrue, whenFalse); 16278new TreeDumperNode("bindings", node.Bindings, null),
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (4)
1091Debug.Assert(whenNodes.All(n => n.Bindings == whenNodes[0].Bindings)); 1096lowerBindings(whenNodes[0].Bindings, sectionBuilder); 1157lowerBindings(whenClause.Bindings, sectionBuilder);
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (2)
545foreach (BoundPatternBinding binding in w.Bindings) 587return n.Bindings.Any(static b => b.TempContainingValue.IsOriginalInput);
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (1)
285foreach (BoundPatternBinding binding in whenNode.Bindings)