1 write to LocalFunctions
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraph.cs (1)
66LocalFunctions = localFunctions;
10 references to LocalFunctions
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraph.cs (2)
252Debug.Assert(localFunction == LocalFunctions[info.ordinal]); 256Interlocked.CompareExchange(ref _lazyLocalFunctionsGraphs, new ControlFlowGraph[LocalFunctions.Length], null);
Microsoft.CodeAnalysis.AnalyzerUtilities (4)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PropertySetAnalysis\PropertySetAnalysis.cs (1)
219foreach (IMethodSymbol localFunctionSymbol in enclosingControlFlowGraph.LocalFunctions)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\AbstractDataFlowAnalysisContext.cs (1)
111if (ControlFlowGraph.LocalFunctions.Contains(localFunction))
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\DataFlowOperationVisitor.cs (2)
612foreach (var localFunction in DataFlowAnalysisContext.ControlFlowGraph.LocalFunctions) 633Debug.Assert(DataFlowAnalysisContext.ControlFlowGraph.LocalFunctions.Contains(localFunction));
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (2)
IOperation\IOperationTests_ILocalFunctionStatement.cs (2)
1823return graph.LocalFunctions.Single(); 1874return graph.LocalFunctions.Single(l => l.Name == name);
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\ControlFlowGraphVerifier.cs (2)
328foreach (IMethodSymbol m in graph.LocalFunctions) 336Assert.Equal(graph.LocalFunctions.Length, localFunctionsMap.Count);