feat: imports and parallelised renamer #40

Merged
gk1623 merged 14 commits from imports into master 2025-03-13 23:10:38 +00:00
31 changed files with 853 additions and 322 deletions
Showing only changes of commit a3895dca2c - Show all commits

View File

@@ -18,7 +18,7 @@ private class LabelGenerator {
}
private def getLabel(target: CallTarget | RuntimeError): String = target match {
case Ident(v, guid) => s"wacc_${v}_$guid"
case Ident(v, guid) => s"wacc_${v}_$guid"
case Builtin(name) => s"_$name"
case err: RuntimeError => s".L.${err.name}"
}