2 instantiations of DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (2)
Binder\RefSafetyAnalysis.cs (2)
1232? new DeconstructionVariable(expr, valEscape: SafeContext.Empty, GetDeconstructionAssignmentVariables(tuple)) 1233: new DeconstructionVariable(expr, GetValEscape(expr), null);
8 references to DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (8)
Binder\RefSafetyAnalysis.cs (8)
1128private void VisitDeconstructionArguments(ArrayBuilder<DeconstructionVariable> variables, SyntaxNode syntax, Conversion conversion, BoundExpression right) 1164var variable = variables[i]; 1194var variable = variables[i]; 1209internal readonly ArrayBuilder<DeconstructionVariable>? NestedVariables; 1211internal DeconstructionVariable(BoundExpression expression, SafeContext valEscape, ArrayBuilder<DeconstructionVariable>? nestedVariables) 1219private ArrayBuilder<DeconstructionVariable> GetDeconstructionAssignmentVariables(BoundTupleExpression tuple) 1222var builder = ArrayBuilder<DeconstructionVariable>.GetInstance(arguments.Length); 1229DeconstructionVariable getDeconstructionAssignmentVariable(BoundExpression expr)