Table of Contents

Class WasmDisassemblyChunk

Namespace
Selenium.WebDriver.BiDi.Cdp.Debugger
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
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

Lines ImmutableArray<string>

The next chunk of disassembled lines.

BytecodeOffsets ImmutableArray<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

ImmutableArray<long>

Lines

The next chunk of disassembled lines.

public ImmutableArray<string> Lines { get; init; }

Property Value

ImmutableArray<string>