Pretty print symbols

This commit is contained in:
Ayaz Hafiz 2022-12-03 22:33:45 -06:00
parent b0300e4e90
commit 01dea13b49
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
5 changed files with 109 additions and 110 deletions

View file

@ -180,7 +180,7 @@ fn verify_procedures<'a>(
let mut procs_string = procedures
.values()
.map(|proc| proc.to_pretty(&interner, 200))
.map(|proc| proc.to_pretty(&interner, 200, false))
.collect::<Vec<_>>();
let main_fn = procs_string.swap_remove(index);