Table of Contents

Struct VmDiagnostic

Namespace
Pl0.Vm
Assembly
Pl0.Vm.dll

Diagnostic information produced by the virtual machine.

public readonly record struct VmDiagnostic : IEquatable<VmDiagnostic>
Implements
Inherited Members

Constructors

VmDiagnostic(int, string)

Diagnostic information produced by the virtual machine.

public VmDiagnostic(int Code, string Message)

Parameters

Code int

Diagnostic code.

Message string

Diagnostic message.

Properties

Code

Diagnostic code.

public int Code { get; init; }

Property Value

int

Message

Diagnostic message.

public string Message { get; init; }

Property Value

string