dap: Reply to RunInTerminal

This commit is contained in:
Blaž Hrastnik 2021-12-05 14:43:34 +09:00
parent d5d1a9b1ae
commit 2b4de41bf0
3 changed files with 160 additions and 143 deletions

View file

@ -262,10 +262,11 @@ impl Client {
pub fn reply(
&self,
request_seq: u64,
command: String,
command: &str,
result: core::result::Result<Value, Error>,
) -> impl Future<Output = Result<()>> {
let server_tx = self.server_tx.clone();
let command = command.to_string();
async move {
let response = match result {