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