1 write to TempContainingValue
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundPatternBinding.cs (1)
19this.TempContainingValue = tempContainingValue;
8 references to TempContainingValue
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (2)
217BoundDagTemp temp = binding.TempContainingValue; 1716var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}");
BoundTree\BoundPatternBinding.cs (1)
27return $"({VariableAccess.GetDebuggerDisplay()} = {TempContainingValue.GetDebuggerDisplay()})";
FlowAnalysis\NullableWalker_Patterns.cs (1)
675var tempSource = binding.TempContainingValue;
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (1)
1185BoundExpression right = _tempAllocator.GetTemp(binding.TempContainingValue);
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (2)
546_ = _tempAllocator.TrySetTemp(binding.TempContainingValue, binding.VariableAccess); 583return n.Bindings.Any(static b => b.TempContainingValue.IsOriginalInput);
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (1)
288BoundExpression right = _tempAllocator.GetTemp(binding.TempContainingValue);