only show variables' names and types

pull/574/head
Dmitry Sharshakov 2021-08-25 08:33:46 +03:00
parent 2c3e2b979b
commit 326293cb57
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473
1 changed files with 2 additions and 1 deletions

View File

@ -4649,7 +4649,8 @@ fn dap_variables(cx: &mut Context) {
Some(data_type) => format!("{} ", data_type),
None => "".to_owned(),
};
s.push_str(&format!("{}{} = {}; ", prefix, var.name, var.value));
// s.push_str(&format!("{}{} = {}; ", prefix, var.name, var.value));
s.push_str(&format!("{}{}; ", prefix, var.name,));
}
}
}