[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / lldb / tools / lldb-dap / src-ts / types.ts
blob63a8c73982caf3c6d95fd7d6a839f203e36f98d2
1 import * as vscode from "vscode";
3 /**
4  * Callback used to generate the actual command to be executed to launch the lldb-dap binary.
5  *
6  * @param session - The information of the debug session to be launched.
7  *
8  * @param packageJSONExecutable - An optional {@link vscode.DebugAdapterExecutable executable} for
9  * lldb-dap if specified in the package.json file.
10  */
11 export type LLDBDapCreateDAPExecutableCommand = (
12   session: vscode.DebugSession,
13   packageJSONExecutable: vscode.DebugAdapterExecutable | undefined,
14 ) => Promise<vscode.DebugAdapterExecutable | undefined>;
16 /**
17  * The options that this extension accepts.
18  */
19 export interface LLDBDapOptions {
20   createDapExecutableCommand: LLDBDapCreateDAPExecutableCommand;
21   // The name of the debugger type as specified in the package.json file.
22   debuggerType: string;