1 instantiation of DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (1)
Binder\RefSafetyAnalysis.cs (1)
1083: new DeconstructionVariable(expr, GetValEscape(expr, _localScopeDepth), null);
6 references to DeconstructionVariable
Microsoft.CodeAnalysis.CSharp (6)
Binder\RefSafetyAnalysis.cs (6)
985private void VisitDeconstructionArguments(ArrayBuilder<DeconstructionVariable> variables, SyntaxNode syntax, Conversion conversion, BoundExpression right) 1059internal readonly ArrayBuilder<DeconstructionVariable>? NestedVariables; 1061internal DeconstructionVariable(BoundExpression expression, SafeContext valEscape, ArrayBuilder<DeconstructionVariable>? nestedVariables) 1069private ArrayBuilder<DeconstructionVariable> GetDeconstructionAssignmentVariables(BoundTupleExpression tuple) 1072var builder = ArrayBuilder<DeconstructionVariable>.GetInstance(arguments.Length); 1079DeconstructionVariable getDeconstructionAssignmentVariable(BoundExpression expr)