5 references to ConcurrentSet
Microsoft.CodeAnalysis (5)
CommandLine\TouchedFileLogger.cs (2)
23
_readFiles = new
ConcurrentSet
<string>();
24
_writtenFiles = new
ConcurrentSet
<string>();
DiagnosticAnalyzer\AnalyzerDriver.cs (2)
381
_programmaticSuppressions = HasDiagnosticSuppressors ? new
ConcurrentSet
<Suppression>() : null;
474
var suppressedDiagnosticIds = trackSuppressedDiagnosticIds ? new
ConcurrentSet
<string>() : null;
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (1)
42
private readonly ConcurrentSet<Diagnostic> _exceptionDiagnostics = new
ConcurrentSet
<Diagnostic>();