1 write to _driverPool
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (1)
114
_driverPool
= new ObjectPool<AnalyzerDriver>(() => _compilation.CreateAnalyzerDriver(analyzers, _analyzerManager, severityFilter: SeverityFilter.None));
3 references to _driverPool
Microsoft.CodeAnalysis (3)
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (3)
1078
AnalyzerDriver driver =
_driverPool
.Allocate();
1116
_driverPool
.ForgetTrackedObject(driver);
1120
_driverPool
.Free(driver);