adding some debug
This commit is contained in:
parent
2489bf56dc
commit
5340d5906f
1 changed files with 4 additions and 1 deletions
|
@ -122,7 +122,10 @@ impl From<&Value> for String {
|
|||
fn from(value: &Value) -> Self {
|
||||
match value {
|
||||
Value::String(str) => str.clone(),
|
||||
Value::Symbol(Symbol(str)) => str.clone(),
|
||||
Value::Symbol(Symbol(str)) => {
|
||||
dbg!(str);
|
||||
str.clone()
|
||||
}
|
||||
Value::Keyword(Keyword(str)) => str.clone(),
|
||||
_ => String::default(),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue