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)
2029var allAnalyzerActions = AnalyzerActions.Empty; 2196var actions = AnalyzerActions.Empty.Append(in containerAnalyzerActions, appendSymbolStartAndSymbolEndActions: false); 2209return AnalyzerActions.Empty; 2215return AnalyzerActions.Empty;
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActions.cs (1)
25AnalyzerActions.Empty);
DiagnosticAnalyzer\AnalyzerManager.cs (1)
206return AnalyzerActions.Empty;
DiagnosticAnalyzer\DiagnosticStartAnalysisScope.cs (1)
649return InterlockedOperations.Initialize(ref _analyzerActions, static () => new StrongBox<AnalyzerActions>(AnalyzerActions.Empty));
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Diagnostics\DiagnosticAnalyzerTests.cs (2)
3569var first = AnalyzerActions.Empty; 3570var second = AnalyzerActions.Empty;