1 write to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4062this.DeconstructionOpt = deconstructionOpt;
17 references to DeconstructionOpt
Microsoft.CodeAnalysis.CSharp (17)
Binder\RefSafetyAnalysis.cs (2)
1289if (node.DeconstructionOpt?.TargetPlaceholder is { } targetPlaceholder) 1306this.Visit(node.DeconstructionOpt);
Compilation\MemberSemanticModel.cs (1)
1062var boundDeconstruction = boundForEach.DeconstructionOpt;
FlowAnalysis\NullableWalker.cs (2)
11926if (node.DeconstructionOpt is object) 11928var assignment = node.DeconstructionOpt.DeconstructionAssignment;
FlowAnalysis\VariablesDeclaredWalker.cs (1)
213var deconstructionAssignment = node.DeconstructionOpt?.DeconstructionAssignment;
Generated\BoundNodes.xml.Generated.cs (5)
4081if (enumeratorInfoOpt != this.EnumeratorInfoOpt || elementPlaceholder != this.ElementPlaceholder || elementConversion != this.ElementConversion || iterationVariableType != this.IterationVariableType || iterationVariables != this.IterationVariables || iterationErrorExpressionOpt != this.IterationErrorExpressionOpt || expression != this.Expression || deconstructionOpt != this.DeconstructionOpt || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 10229this.Visit(node.DeconstructionOpt); 11515BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 13620BoundForEachDeconstructStep? deconstructionOpt = (BoundForEachDeconstructStep?)this.Visit(node.DeconstructionOpt); 16055new TreeDumperNode("deconstructionOpt", null, new TreeDumperNode[] { Visit(node.DeconstructionOpt, null) }),
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
134node.DeconstructionOpt, 578node.DeconstructionOpt, 879node.DeconstructionOpt, 1028node.DeconstructionOpt,
Operations\CSharpOperationFactory.cs (2)
1946if (boundForEachStatement.DeconstructionOpt != null) 1948return Create(boundForEachStatement.DeconstructionOpt.DeconstructionAssignment.Left);