only show variables' names and types

pull/574/head
Dmitry Sharshakov 3 years ago
parent 2c3e2b979b
commit 326293cb57
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473

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

Loading…
Cancel
Save