1 write to OuterLocals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4007this.OuterLocals = outerLocals;
13 references to OuterLocals
Microsoft.CodeAnalysis.CSharp (13)
Binder\RefSafetyAnalysis.cs (1)
334using var outerLocals = new LocalScope(this, node.OuterLocals);
BoundTree\BoundNode.cs (2)
651AddAll(node.OuterLocals); 658RemoveAll(node.OuterLocals);
FlowAnalysis\DefiniteAssignment.cs (2)
2237DeclareVariables(node.OuterLocals); 2241ReportUnusedVariables(node.OuterLocals);
FlowAnalysis\NullableWalker.cs (1)
3565DeclareLocals(node.OuterLocals);
Generated\BoundNodes.xml.Generated.cs (4)
4027if (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)) 11484ImmutableArray<LocalSymbol> outerLocals = this.VisitLocals(node.OuterLocals); 13606ImmutableArray<LocalSymbol> outerLocals = GetUpdatedArray(node, node.OuterLocals); 16046new 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)
1878ImmutableArray<ILocalSymbol> locals = boundForStatement.OuterLocals.GetPublicSymbols();