1 write to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3943this.DeconstructionOpt = deconstructionOpt;
13 references to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (13)
Binder\RefSafetyAnalysis.cs (1)
865if (node.DeconstructionOpt?.TargetPlaceholder is { } targetPlaceholder)
Compilation\MemberSemanticModel.cs (1)
1014var boundDeconstruction = boundForEach.DeconstructionOpt;
FlowAnalysis\NullableWalker.cs (2)
10163if (node.DeconstructionOpt is object) 10165var assignment = node.DeconstructionOpt.DeconstructionAssignment;
FlowAnalysis\VariablesDeclaredWalker.cs (1)
130var deconstructionAssignment = node.DeconstructionOpt?.DeconstructionAssignment;
Generated\BoundNodes.xml.Generated.cs (5)
3964if (enumeratorInfoOpt != this.EnumeratorInfoOpt || elementPlaceholder != this.ElementPlaceholder || elementConversion != this.ElementConversion || iterationVariableType != this.IterationVariableType || iterationVariables != this.IterationVariables || iterationErrorExpressionOpt != this.IterationErrorExpressionOpt || expression != this.Expression || deconstructionOpt != this.DeconstructionOpt || awaitOpt != this.AwaitOpt || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 9824this.Visit(node.DeconstructionOpt); 10999BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 12970BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 15319new TreeDumperNode("deconstructionOpt", null, new TreeDumperNode[] { Visit(node.DeconstructionOpt, null) }),
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (1)
639BoundForEachDeconstructStep? deconstruction = forEachBound.DeconstructionOpt;
Operations\CSharpOperationFactory.cs (2)
1848if (boundForEachStatement.DeconstructionOpt != null) 1850return Create(boundForEachStatement.DeconstructionOpt.DeconstructionAssignment.Left);