great success

This commit is contained in:
Folkert 2021-05-09 23:24:27 +02:00
parent 694a896d54
commit f1a8b75196
5 changed files with 459 additions and 70 deletions

View file

@ -157,6 +157,12 @@ impl fmt::Display for Symbol {
}
}
impl Into<u64> for Symbol {
fn into(self) -> u64 {
self.0
}
}
fn fallback_debug_fmt(symbol: Symbol, f: &mut fmt::Formatter) -> fmt::Result {
let module_id = symbol.module_id();
let ident_id = symbol.ident_id();