10 references to Empty
Microsoft.CodeAnalysis (8)
DiagnosticAnalyzer\AnalyzerActionCounts.cs (1)
14internal static readonly AnalyzerActionCounts Empty = new AnalyzerActionCounts(in AnalyzerActions.Empty);
DiagnosticAnalyzer\AnalyzerDriver.cs (4)
2046var allAnalyzerActions = AnalyzerActions.Empty; 2213var actions = AnalyzerActions.Empty.Append(in containerAnalyzerActions, appendSymbolStartAndSymbolEndActions: false); 2226return AnalyzerActions.Empty; 2232return AnalyzerActions.Empty;
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActions.cs (1)
25AnalyzerActions.Empty);
DiagnosticAnalyzer\AnalyzerManager.cs (1)
206return AnalyzerActions.Empty;
DiagnosticAnalyzer\DiagnosticStartAnalysisScope.cs (1)
659return InterlockedOperations.Initialize(ref _analyzerActions, static () => new StrongBox<AnalyzerActions>(AnalyzerActions.Empty));
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Diagnostics\DiagnosticAnalyzerTests.cs (2)
3570var first = AnalyzerActions.Empty; 3571var second = AnalyzerActions.Empty;