fix: convert constant pointers to strings instead

This commit is contained in:
Erica Marigold 2024-02-24 22:42:23 +05:30
parent 9a3421dcf9
commit 680f333106
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -127,7 +127,7 @@ pub fn pretty_format_value(
write!(buffer, "{}", STYLE_DIM.apply_to("{ ... }"))?;
} else if let Some(s) = call_table_tostring_metamethod(tab) {
write!(buffer, "{s}")?;
} else if depth >= 1 && parent_table_addr.eq(&Some(format!("{:p}", tab))) {
} else if depth >= 1 && parent_table_addr.eq(&Some(format!("{:p}", tab.to_pointer()))) {
write!(buffer, "{}", STYLE_DIM.apply_to("<self>"))?
} else {
let mut is_empty = false;
@ -194,7 +194,7 @@ pub fn pretty_format_multi_value(multi: &LuaMultiValue) -> LuaResult<String> {
if let LuaValue::String(s) = value {
write!(buffer, "{}", s.to_string_lossy()).into_lua_err()?;
} else {
pretty_format_value(&mut buffer, value, Some(format!("{:p}", value)), 0).into_lua_err()?;
pretty_format_value(&mut buffer, value, Some(format!("{:p}", value.to_pointer())), 0).into_lua_err()?;
}
if counter < multi.len() {
write!(&mut buffer, " ").into_lua_err()?;