Implemented jumps and jump related optimizations
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-06-27 15:01:49 +02:00
parent abbc4d9ae2
commit 312e3b2e31
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
5 changed files with 120 additions and 6 deletions

View file

@ -11,6 +11,10 @@ type Call struct {
type FunctionStart struct{}
type FunctionEnd struct{}
type Jump struct {
Label string
}
type Label struct {
Name string
}