Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace IDebugger

A namespace for visual debugger types.

Index

Type aliases

KernelSource

KernelSource: { name: string; path: string }

The type for a kernel source file.

Type declaration

  • name: string

    The name of the source.

  • path: string

    The path of the source.

Source

Source: { content: string; mimeType?: string; path: string }

The type for a source file.

Type declaration

  • content: string

    The content of the source.

  • Optional mimeType?: string

    The mimeType of the source.

  • path: string

    The path of the source.

State

State: { breakpoints: Map<string, IBreakpoint[]>; cells: string[] }

Type declaration

  • breakpoints: Map<string, IBreakpoint[]>

    Map of breakpoints to send back to the kernel after it has restarted

  • cells: string[]

    List of cells to dump after the kernel has restarted

Generated using TypeDoc