1 write to OuterLocals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4064this.OuterLocals = outerLocals;
13 references to OuterLocals
Microsoft.CodeAnalysis.CSharp (13)
Binder\RefSafetyAnalysis.cs (1)
395using var outerLocals = new LocalScope(this, node.OuterLocals);
BoundTree\BoundNode.cs (2)
707AddAll(node.OuterLocals); 714RemoveAll(node.OuterLocals);
FlowAnalysis\DefiniteAssignment.cs (2)
2190DeclareVariables(node.OuterLocals); 2194ReportUnusedVariables(node.OuterLocals);
FlowAnalysis\NullableWalker.cs (1)
3588DeclareLocals(node.OuterLocals);
Generated\BoundNodes.xml.Generated.cs (4)
4084if (outerLocals != this.OuterLocals || initializer != this.Initializer || innerLocals != this.InnerLocals || condition != this.Condition || increment != this.Increment || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 11765ImmutableArray<LocalSymbol> outerLocals = this.VisitLocals(node.OuterLocals); 13916ImmutableArray<LocalSymbol> outerLocals = GetUpdatedArray(node, node.OuterLocals); 16384new TreeDumperNode("outerLocals", node.OuterLocals, null),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
183node.OuterLocals, 271return new BoundBlock(syntax, node.OuterLocals, statements, node.HasErrors);
Operations\CSharpOperationFactory.cs (1)
1944ImmutableArray<ILocalSymbol> locals = boundForStatement.OuterLocals.GetPublicSymbols();