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