only show variables' names and types
This commit is contained in:
parent
2c3e2b979b
commit
326293cb57
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue