1 write to InnerLocalFunctions
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3786this.InnerLocalFunctions = innerLocalFunctions;
6 references to InnerLocalFunctions
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\DefiniteAssignment.cs (1)
2225ReportUnusedVariables(node.InnerLocalFunctions);
Generated\BoundNodes.xml.Generated.cs (4)
3806if (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)) 11443ImmutableArray<MethodSymbol> innerLocalFunctions = this.VisitDeclaredLocalFunctions(node.InnerLocalFunctions); 13580ImmutableArray<MethodSymbol> innerLocalFunctions = GetUpdatedArray(node, node.InnerLocalFunctions); 15999new TreeDumperNode("innerLocalFunctions", node.InnerLocalFunctions, null),
Lowering\LocalRewriter\LocalRewriter_PatternSwitchStatement.cs (1)
174BoundStatement translatedSwitch = _factory.Block(outerVariables.ToImmutableAndFree(), node.InnerLocalFunctions, result.ToImmutableAndFree());