1 write to InnerLocals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4006this.InnerLocals = innerLocals;
14 references to InnerLocals
Microsoft.CodeAnalysis.CSharp (14)
Binder\RefSafetyAnalysis.cs (1)
335using var innerLocals = new LocalScope(this, node.InnerLocals);
BoundTree\BoundNode.cs (2)
653AddAll(node.InnerLocals); 657RemoveAll(node.InnerLocals);
FlowAnalysis\DefiniteAssignment.cs (2)
2226DeclareVariables(node.InnerLocals); 2228ReportUnusedVariables(node.InnerLocals);
FlowAnalysis\NullableWalker.cs (1)
3408DeclareLocals(node.InnerLocals);
Generated\BoundNodes.xml.Generated.cs (4)
4024if (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)) 11385return node.Update(node.OuterLocals, initializer, node.InnerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 13421ImmutableArray<LocalSymbol> innerLocals = GetUpdatedArray(node, node.InnerLocals); 15861new TreeDumperNode("innerLocals", node.InnerLocals, null),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
179if (node.InnerLocals.IsEmpty) 265statementBuilder.Add(new BoundBlock(syntax, node.InnerLocals, blockBuilder.ToImmutableAndFree()));
Lowering\MethodToClassRewriter.cs (1)
177var newInnerLocals = RewriteLocals(node.InnerLocals);
Operations\CSharpOperationFactory.cs (1)
1879ImmutableArray<ILocalSymbol> conditionLocals = boundForStatement.InnerLocals.GetPublicSymbols();