1 interface inheriting from IWasmDataSegment
ILCompiler.ReadyToRun (1)
parent\parent\Common\Compiler\ObjectWriter\Wasm\IWasmDataSegment.cs (1)
63internal interface IWasmActiveDataSegment : IWasmDataSegment
2 implementations of IWasmDataSegment
ILCompiler.ReadyToRun (2)
parent\parent\Common\Compiler\ObjectWriter\Wasm\WasmByteArrayDataSegment.cs (1)
18internal sealed class WasmByteArrayDataSegment : IWasmDataSegment
parent\parent\Common\Compiler\ObjectWriter\Wasm\WebcilPayloadDataSegment.cs (1)
15internal sealed class WebcilPayloadDataSegment : IWasmDataSegment
9 references to IWasmDataSegment
ILCompiler.ReadyToRun (9)
parent\parent\Common\Compiler\ObjectWriter\Wasm\IWasmDataSegment.cs (1)
65WasmDataSegmentType IWasmDataSegment.SegmentType => WasmDataSegmentType.Active;
parent\parent\Common\Compiler\ObjectWriter\Wasm\WasmDataSection.cs (8)
18private readonly List<IWasmDataSegment> _segments; 21public WasmDataSection(List<IWasmDataSegment> segments, Utf8String name) 35foreach (IWasmDataSegment segment in _segments) 49foreach (IWasmDataSegment segment in _segments) 92foreach (IWasmDataSegment segment in _segments) 116IWasmDataSegment segment = _segments[i]; 117IWasmDataSegment previousSegment = _segments[i - 1]; 129IWasmDataSegment segment = _segments[i];