Merge pull request #4674 from roc-lang/ircheck

Type-check mono IR
This commit is contained in:
Folkert de Vries 2022-12-04 20:56:54 +01:00 committed by GitHub
commit c1d3580b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 1322 additions and 106 deletions

View file

@ -2177,7 +2177,7 @@ macro_rules! debug_print_ir {
let procs_string = $state
.procedures
.values()
.map(|proc| proc.to_pretty($interner, 200))
.map(|proc| proc.to_pretty($interner, 200, true))
.collect::<Vec<_>>();
let result = procs_string.join("\n");