Unnamed repository; edit this file 'description' to name the repository.
removing unused function
bruno-ortiz 2023-05-02
parent ee54c65 · commit d1721b1
-rw-r--r--editors/code/src/toolchain.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/editors/code/src/toolchain.ts b/editors/code/src/toolchain.ts
index 6b40cb678c..5fc5d0ddbd 100644
--- a/editors/code/src/toolchain.ts
+++ b/editors/code/src/toolchain.ts
@@ -192,32 +192,6 @@ export async function activeToolchain(): Promise<string> {
});
}
-export async function rustVersion(): Promise<string> {
- const pathToRustup = await rustupPath();
- return await new Promise((resolve, reject) => {
- const execution = cp.spawn(pathToRustup, ['show', 'active-toolchain'], {
- stdio: ['ignore', 'pipe', 'pipe'],
- cwd: os.homedir()
- });
- const rl = readline.createInterface({ input: execution.stdout });
-
- let currToolchain: string | undefined = undefined;
- rl.on('line', line => {
- const match = line.match(TOOLCHAIN_PATTERN);
- if (match) {
- currToolchain = match[1];
- }
- });
- execution.on('exit', (exitCode, _) => {
- if (exitCode === 1 && currToolchain)
- resolve(currToolchain);
- else
- reject(new Error(`exit code: ${exitCode}.`));
- });
-
- });
-}
-
/** Mirrors `project_model::sysroot::discover_sysroot_dir()` implementation*/
export async function getSysroot(dir: string): Promise<string> {
const rustcPath = await getPathForExecutable("rustc");