1 write to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4054this.DeconstructionOpt = deconstructionOpt;
17 references to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (17)
Binder\RefSafetyAnalysis.cs (2)
1090if (node.DeconstructionOpt?.TargetPlaceholder is { } targetPlaceholder) 1103this.Visit(node.DeconstructionOpt);
Compilation\MemberSemanticModel.cs (1)
1023var boundDeconstruction = boundForEach.DeconstructionOpt;
FlowAnalysis\NullableWalker.cs (2)
10896if (node.DeconstructionOpt is object) 10898var assignment = node.DeconstructionOpt.DeconstructionAssignment;
FlowAnalysis\VariablesDeclaredWalker.cs (1)
130var deconstructionAssignment = node.DeconstructionOpt?.DeconstructionAssignment;
Generated\BoundNodes.xml.Generated.cs (5)
4075if (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)) 10179this.Visit(node.DeconstructionOpt); 11392BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 13435BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 15877new TreeDumperNode("deconstructionOpt", null, new TreeDumperNode[] { Visit(node.DeconstructionOpt, null) }),
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
128node.DeconstructionOpt, 589node.DeconstructionOpt, 890node.DeconstructionOpt, 1039node.DeconstructionOpt,
Operations\CSharpOperationFactory.cs (2)
1926if (boundForEachStatement.DeconstructionOpt != null) 1928return Create(boundForEachStatement.DeconstructionOpt.DeconstructionAssignment.Left);