about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbruno-ortiz <brunortiz11@gmail.com>2022-02-26 11:17:10 -0300
committerBruno Ortiz <brunortiz11@gmail.com>2023-05-02 10:56:13 -0300
commitd1721b11e923df58489578b48fbc15105e960aa4 (patch)
tree6dae26c935fcc8836676f307b6f1e2ce0f53b431
parentee54c6558dff4307922eae4793850596bb35bcfc (diff)
downloadrust-d1721b11e923df58489578b48fbc15105e960aa4.tar.gz
rust-d1721b11e923df58489578b48fbc15105e960aa4.zip
removing unused function
-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 6b40cb678c3..5fc5d0ddbdf 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");