1 write to LocalFunctions
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraph.cs (1)
66LocalFunctions = localFunctions;
6 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.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);