only show variables' names and types

This commit is contained in:
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

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,));
}
}
}