WasmLocalInfo
Namespace: Dotsider.Core.Analysis.Models
Assembly: Dotsider.Core.dll
A run-length encoded local declaration inside a WebAssembly function body.
public sealed record WasmLocalInfo : IEquatable<WasmLocalInfo>Inheritance
Section titled “Inheritance”Object → WasmLocalInfo
Implements
Section titled “Implements”Constructors
Section titled “Constructors”WasmLocalInfo(uint, byte, string)
Section titled “WasmLocalInfo(uint, byte, string)”A run-length encoded local declaration inside a WebAssembly function body.
Parameters:
Count(UInt32): The number of locals in this run.ValueType(Byte): The raw Wasm value type byte.DisplayType(String): The display name of the value type.
public WasmLocalInfo(uint Count, byte ValueType, string DisplayType)Properties
Section titled “Properties”The number of locals in this run.
Returns: UInt32
public uint Count { get; init; }DisplayType
Section titled “DisplayType”The display name of the value type.
Returns: String
public string DisplayType { get; init; }ValueType
Section titled “ValueType”The raw Wasm value type byte.
Returns: Byte
public byte ValueType { get; init; }