Liking cljdoc? Tell your friends :D

dots.vscode.debug-session

A debug session.

A debug session.
raw docstring

configurationcljs

(configuration debug-session)

The "resolved" {@link DebugConfiguration debug configuration} of this session. "Resolved" means that

  • all variables have been substituted and
  • platform specific attribute sections have been "flattened" for the matching platform and removed for non-matching platforms.

Returns: DebugConfiguration

The "resolved" {@link DebugConfiguration debug configuration} of this session.
"Resolved" means that
- all variables have been substituted and
- platform specific attribute sections have been "flattened" for the matching platform and removed for non-matching platforms.

**Returns:** `DebugConfiguration`
sourceraw docstring

custom-requestcljs

(custom-request debug-session command)
(custom-request debug-session command args)

Send a custom request to the debug adapter.

Parameters:

  • command: string
  • args: any

Returns: Thenable<any>

Send a custom request to the debug adapter.

**Parameters:**
- `command`: `string`
- `args`: `any`

**Returns:** `Thenable<any>`
sourceraw docstring

debug-protocol-breakpointcljs

(debug-protocol-breakpoint debug-session breakpoint)

Maps a breakpoint in the editor to the corresponding Debug Adapter Protocol (DAP) breakpoint that is managed by the debug adapter of the debug session. If no DAP breakpoint exists (either because the editor breakpoint was not yet registered or because the debug adapter is not interested in the breakpoint), the value undefined is returned.

Parameters:

  • breakpoint: Breakpoint - A {@link Breakpoint } in the editor.

Returns: Thenable<DebugProtocolBreakpoint | undefined> - A promise that resolves to the Debug Adapter Protocol breakpoint or undefined.

Maps a breakpoint in the editor to the corresponding Debug Adapter Protocol (DAP) breakpoint that is managed by the debug adapter of the debug session.
If no DAP breakpoint exists (either because the editor breakpoint was not yet registered or because the debug adapter is not interested in the breakpoint), the value `undefined` is returned.

**Parameters:**
- `breakpoint`: `Breakpoint` - A {@link Breakpoint } in the editor.

**Returns:** `Thenable<DebugProtocolBreakpoint | undefined>` - A promise that resolves to the Debug Adapter Protocol breakpoint or `undefined`.
sourceraw docstring

idcljs

(id debug-session)

The unique ID of this debug session.

Returns: string

The unique ID of this debug session.

**Returns:** `string`
sourceraw docstring

namecljs

(name debug-session)

The debug session's name is initially taken from the {@link DebugConfiguration debug configuration}. Any changes will be properly reflected in the UI.

Returns: string

The debug session's name is initially taken from the {@link DebugConfiguration debug configuration}.
Any changes will be properly reflected in the UI.

**Returns:** `string`
sourceraw docstring

parent-sessioncljs

(parent-session debug-session)

The parent session of this debug session, if it was created as a child.

Returns: DebugSession | undefined

The parent session of this debug session, if it was created as a child.

**Returns:** `DebugSession | undefined`
sourceraw docstring

set-name!cljs

(set-name! debug-session value)

The debug session's name is initially taken from the {@link DebugConfiguration debug configuration}. Any changes will be properly reflected in the UI.

The debug session's name is initially taken from the {@link DebugConfiguration debug configuration}.
Any changes will be properly reflected in the UI.
sourceraw docstring

typecljs

(type debug-session)

The debug session's type from the {@link DebugConfiguration debug configuration}.

Returns: string

The debug session's type from the {@link DebugConfiguration debug configuration}.

**Returns:** `string`
sourceraw docstring

workspace-foldercljs

(workspace-folder debug-session)

The workspace folder of this session or undefined for a folderless setup.

Returns: WorkspaceFolder | undefined

The workspace folder of this session or `undefined` for a folderless setup.

**Returns:** `WorkspaceFolder | undefined`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close