2 instantiations of DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (2)
Binder\RefSafetyAnalysis.cs (2)
1267? new DeconstructionVariable(expr, valEscape: SafeContext.Empty, GetDeconstructionAssignmentVariables(tuple)) 1268: new DeconstructionVariable(expr, GetValEscape(expr), null);
8 references to DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (8)
Binder\RefSafetyAnalysis.cs (8)
1163private void VisitDeconstructionArguments(ArrayBuilder<DeconstructionVariable> variables, SyntaxNode syntax, Conversion conversion, BoundExpression right) 1199var variable = variables[i]; 1229var variable = variables[i]; 1244internal readonly ArrayBuilder<DeconstructionVariable>? NestedVariables; 1246internal DeconstructionVariable(BoundExpression expression, SafeContext valEscape, ArrayBuilder<DeconstructionVariable>? nestedVariables) 1254private ArrayBuilder<DeconstructionVariable> GetDeconstructionAssignmentVariables(BoundTupleExpression tuple) 1257var builder = ArrayBuilder<DeconstructionVariable>.GetInstance(arguments.Length); 1264DeconstructionVariable getDeconstructionAssignmentVariable(BoundExpression expr)