WIP fix stack overflow

This commit is contained in:
2025-12-14 02:54:56 -07:00
parent 30b564a153
commit b7fbc499b6
5 changed files with 15 additions and 4 deletions

View File

@@ -264,7 +264,7 @@ impl<'a> Compiler<'a> {
fn next_label_name(&mut self) -> Cow<'a, str> {
self.label_counter += 1;
Cow::from(format!("L{}", self.label_counter))
Cow::from(format!("__internal_L{}", self.label_counter))
}
fn expression(