1 write to InnerLocalFunctions
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3782this.InnerLocalFunctions = innerLocalFunctions;
6 references to InnerLocalFunctions
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\DefiniteAssignment.cs (1)
2240ReportUnusedVariables(node.InnerLocalFunctions);
Generated\BoundNodes.xml.Generated.cs (4)
3802if (expression != this.Expression || innerLocals != this.InnerLocals || innerLocalFunctions != this.InnerLocalFunctions || switchSections != this.SwitchSections || reachabilityDecisionDag != this.ReachabilityDecisionDag || defaultLabel != this.DefaultLabel || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel)) 11437ImmutableArray<MethodSymbol> innerLocalFunctions = this.VisitDeclaredLocalFunctions(node.InnerLocalFunctions); 13574ImmutableArray<MethodSymbol> innerLocalFunctions = GetUpdatedArray(node, node.InnerLocalFunctions); 15991new TreeDumperNode("innerLocalFunctions", node.InnerLocalFunctions, null),
Lowering\LocalRewriter\LocalRewriter_PatternSwitchStatement.cs (1)
174BoundStatement translatedSwitch = _factory.Block(outerVariables.ToImmutableAndFree(), node.InnerLocalFunctions, result.ToImmutableAndFree());