Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DiagnosticContext.cs « TrimAnalysis « ILLink.Shared « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfb7ab5c0fd328f270a26c308ddac0d03e0d607b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

// This is needed due to NativeAOT which doesn't enable nullable globally yet
#nullable enable

namespace ILLink.Shared.TrimAnalysis
{
	/// <summary>
	/// The diagnostic context may be entirely disabled or some kinds of warnings may be suppressed.
	/// The suppressions are determined based on the <paramref name="id"/>.
	/// Typically the suppressions will be based on diagnostic category <see cref="DiagnosticCategory"/>:
	///  - Trimmer warnings (suppressed by RequiresUnreferencedCodeAttribute)
	///  - AOT warnings (suppressed by RequiresDynamicCodeAttribute)
	///  - Single-file warnings (suppressed by RequiresAssemblyFilesAttribute)
	/// Note that not all categories are used/supported by all tools, for example the ILLink only handles trimmer warnings and ignores the rest.
	/// </summary>
	public readonly partial struct DiagnosticContext
	{
		/// <param name="id">The diagnostic ID, this will be used to determine the category of diagnostic (trimmer, AOT, single-file)</param>
		/// <param name="args">The arguments for diagnostic message.</param>
		public partial void AddDiagnostic (DiagnosticId id, params string[] args);

		/// <param name="id">The diagnostic ID, this will be used to determine the category of diagnostic (trimmer, AOT, single-file)</param>
		/// <param name="actualValue">The value for the source of the diagnostic</param>
		/// <param name="expectedAnnotationsValue">The value for the symbol causing the diagnostic</param>
		/// <param name="args">The arguments for diagnostic message.</param>
		public partial void AddDiagnostic (DiagnosticId id, ValueWithDynamicallyAccessedMembers actualValue, ValueWithDynamicallyAccessedMembers expectedAnnotationsValue, params string[] args);
	}
}