import * as vscode from "vscode"; import { LLDBDapOptions } from "./types"; /** * This class defines a factory used to find the lldb-dap binary to use * depending on the session configuration. */ export class LLDBDapDescriptorFactory implements vscode.DebugAdapterDescriptorFactory { private lldbDapOptions: LLDBDapOptions; constructor(lldbDapOptions: LLDBDapOptions) { this.lldbDapOptions = lldbDapOptions; } async createDebugAdapterDescriptor( session: vscode.DebugSession, executable: vscode.DebugAdapterExecutable | undefined, ): Promise { return this.lldbDapOptions.createDapExecutableCommand(session, executable); } }