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

FieldReferenceValue.cs « Linker.Dataflow « linker « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de0f2354189c9f823aaf6ef311f943a1e6dc486f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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.
using ILLink.Shared.DataFlow;
using Mono.Cecil;

namespace ILLink.Shared.TrimAnalysis
{
	public partial record FieldReferenceValue (FieldDefinition FieldDefinition) : ReferenceValue
	{
		public override SingleValue DeepCopy () => this;
	}
}