Class WasmDisassemblyChunk
public sealed record WasmDisassemblyChunk : IEquatable<WasmDisassemblyChunk>
- Inheritance
-
WasmDisassemblyChunk
- Implements
- Inherited Members
Constructors
WasmDisassemblyChunk(ImmutableArray<string>, ImmutableArray<long>)
public WasmDisassemblyChunk(ImmutableArray<string> Lines, ImmutableArray<long> BytecodeOffsets)
Parameters
LinesImmutableArray<string>The next chunk of disassembled lines.
BytecodeOffsetsImmutableArray<long>The bytecode offsets describing the start of each line.
Properties
BytecodeOffsets
The bytecode offsets describing the start of each line.
public ImmutableArray<long> BytecodeOffsets { get; init; }
Property Value
Lines
The next chunk of disassembled lines.
public ImmutableArray<string> Lines { get; init; }