1 write to OuterLocals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4003this.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)
2252DeclareVariables(node.OuterLocals); 2256ReportUnusedVariables(node.OuterLocals);
FlowAnalysis\NullableWalker.cs (1)
3549DeclareLocals(node.OuterLocals);
Generated\BoundNodes.xml.Generated.cs (4)
4023if (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)) 11478ImmutableArray<LocalSymbol> outerLocals = this.VisitLocals(node.OuterLocals); 13600ImmutableArray<LocalSymbol> outerLocals = GetUpdatedArray(node, node.OuterLocals); 16038new 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();