1 write to InnerLocals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4005this.InnerLocals = innerLocals;
13 references to InnerLocals
Microsoft.CodeAnalysis.CSharp (13)
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)
2253DeclareVariables(node.InnerLocals); 2255ReportUnusedVariables(node.InnerLocals);
FlowAnalysis\NullableWalker.cs (1)
3550DeclareLocals(node.InnerLocals);
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)) 11479ImmutableArray<LocalSymbol> innerLocals = this.VisitLocals(node.InnerLocals); 13601ImmutableArray<LocalSymbol> innerLocals = GetUpdatedArray(node, node.InnerLocals); 16040new TreeDumperNode("innerLocals", node.InnerLocals, null),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
179if (node.InnerLocals.IsEmpty) 265statementBuilder.Add(new BoundBlock(syntax, node.InnerLocals, blockBuilder.ToImmutableAndFree()));
Operations\CSharpOperationFactory.cs (1)
1879ImmutableArray<ILocalSymbol> conditionLocals = boundForStatement.InnerLocals.GetPublicSymbols();