diff options
| author | veetaha <veetaha2@gmail.com> | 2020-05-31 05:13:08 +0300 |
|---|---|---|
| committer | veetaha <veetaha2@gmail.com> | 2020-05-31 05:21:45 +0300 |
| commit | d605ec9c321392d9c7ee4b440c560e1e405d92e6 (patch) | |
| tree | 58d16996d1d1a05733dcc85ae4efddc563b3d3b1 /editors/code/src/debug.ts | |
| parent | a419cedb1cc661349a022262c8b03993e063252f (diff) | |
| download | rust-d605ec9c321392d9c7ee4b440c560e1e405d92e6.tar.gz rust-d605ec9c321392d9c7ee4b440c560e1e405d92e6.zip | |
Change Runnable.bin -> Runnable.kind
As per matklad, we now pass the responsibility for finding the binary to the frontend. Also, added caching for finding the binary path to reduce the amount of filesystem interactions.
Diffstat (limited to 'editors/code/src/debug.ts')
| -rw-r--r-- | editors/code/src/debug.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index 027504ecd2a..bdec5b7357f 100644 --- a/editors/code/src/debug.ts +++ b/editors/code/src/debug.ts @@ -3,7 +3,7 @@ import * as vscode from 'vscode'; import * as path from 'path'; import * as ra from './lsp_ext'; -import { Cargo } from './cargo'; +import { Cargo } from './toolchain'; import { Ctx } from "./ctx"; const debugOutput = vscode.window.createOutputChannel("Debug"); |
