2 instantiations of Extensions
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\AnalyzerFileReference.cs (2)
60
_diagnosticAnalyzers =
new
(this, typeof(DiagnosticAnalyzerAttribute), GetDiagnosticsAnalyzerSupportedLanguages, allowNetFramework: true);
61
_generators =
new
(this, typeof(GeneratorAttribute), GetGeneratorSupportedLanguages, allowNetFramework: false, coerceFunction: CoerceGeneratorType);
4 references to Extensions
Microsoft.CodeAnalysis (4)
DiagnosticAnalyzer\AnalyzerFileReference.cs (4)
39
private readonly
Extensions
<DiagnosticAnalyzer> _diagnosticAnalyzers;
40
private readonly
Extensions
<ISourceGenerator> _generators;
399
private static ImmutableArray<TExtension> CreateExtensionsForAllLanguages(
Extensions
<TExtension> extensions, bool includeDuplicates)
443
private static ImmutableArray<TExtension> CreateLanguageSpecificExtensions(string language,
Extensions
<TExtension> extensions)