mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
great success
This commit is contained in:
parent
694a896d54
commit
f1a8b75196
5 changed files with 459 additions and 70 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue