Improved separation of concerns

This commit is contained in:
2024-07-23 16:41:21 +02:00
parent d6db1b1096
commit 69245caf62
36 changed files with 243 additions and 236 deletions

View File

@ -0,0 +1,11 @@
package z
import "git.akyoto.dev/cli/q/src/build/config"
func (f *Compiler) postInstruction() {
if !config.Assembler {
return
}
f.RegisterHistory = append(f.RegisterHistory, f.CurrentScope().Used)
}