15 lines
469 B
C#
15 lines
469 B
C#
using System.Collections.Immutable;
|
|
using Microsoft.Cci;
|
|
|
|
namespace Microsoft.CodeAnalysis.CodeGen;
|
|
|
|
internal sealed class InstrumentationPayloadRootField : SynthesizedStaticField
|
|
{
|
|
public override ImmutableArray<byte> MappedData => default(ImmutableArray<byte>);
|
|
|
|
internal InstrumentationPayloadRootField(INamedTypeDefinition containingType, int analysisIndex, ITypeReference payloadType)
|
|
: base("PayloadRoot" + analysisIndex, containingType, payloadType)
|
|
{
|
|
}
|
|
}
|