Support 'runnables' options in the vs code extension

This commit is contained in:
Igor Aleksanov 2020-09-05 16:21:14 +03:00
parent 4a1b4b23bb
commit 5b26629a4d
5 changed files with 31 additions and 2 deletions

View file

@ -69,8 +69,10 @@ export interface Runnable {
args: {
workspaceRoot?: string;
cargoArgs: string[];
cargoExtraArgs: string[];
executableArgs: string[];
expectTest?: boolean;
overrideCargo?: string;
};
}
export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");