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

MethodThisParameterValue.cs « TrimAnalysis « ILLink.Shared « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baf12d256d8fb2eaa967351c0ba2b27a469d7f12 (plain)
1
2
3
4
5
6
7
8
9
10
// 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
{
	sealed partial record MethodThisParameterValue : ValueWithDynamicallyAccessedMembers;
}