print formatted desugared code instead of ast

This commit is contained in:
Kiryl Dziamura 2024-07-11 12:51:22 +02:00
parent 56eae5df95
commit 3e17168098
No known key found for this signature in database
GPG Key ID: FB539501A4561ACF
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -2347,6 +2347,7 @@ dependencies = [
"roc_collections",
"roc_error_macros",
"roc_exhaustive",
"roc_fmt",
"roc_module",
"roc_parse",
"roc_problem",

View File

@ -13,6 +13,7 @@ roc_error_macros = { path = "../../error_macros" }
roc_exhaustive = { path = "../exhaustive" }
roc_module = { path = "../module" }
roc_parse = { path = "../parse" }
roc_fmt = { path = "../fmt" }
roc_problem = { path = "../problem" }
roc_region = { path = "../region" }
roc_serialize = { path = "../serialize" }