4 instantiations of Suppression
ILCompiler.Compiler (4)
Compiler\Logging\UnconditionalSuppressMessageAttributeState.cs (4)
239
yield return new
Suppression
(info, originAttribute: ca, provider);
276
suppressions.Add(new
Suppression
(info, originAttribute: instance, module));
284
suppressions.Add(new
Suppression
(info, originAttribute: instance, module));
295
suppressions.Add(new
Suppression
(info, originAttribute: instance, result));
8 references to Suppression
ILCompiler.Compiler (8)
Compiler\Logging\UnconditionalSuppressMessageAttributeState.cs (8)
107
IEnumerable<
Suppression
>? moduleSuppressions = DecodeAssemblyAndModuleSuppressions(ecmaAssembly, generatedWarnings);
150
private static bool IsSuppressedOnElement(int id, TypeSystemEntity provider, IEnumerable<
Suppression
>? moduleSuppressions)
154
foreach (
var
suppression in DecodeSuppressions(provider))
163
foreach (
var
suppression in moduleSuppressions)
230
private static IEnumerable<
Suppression
> DecodeSuppressions(TypeSystemEntity provider)
243
private static List<
Suppression
>? DecodeAssemblyAndModuleSuppressions(EcmaAssembly ecmaAssembly, List<(DiagnosticId, string?[])>? warnings)
245
List<
Suppression
>? suppressions = null;
264
ref List<
Suppression
>? suppressions,