Implemented switch statements

This commit is contained in:
Eduard Urbach 2024-08-03 22:24:40 +02:00
parent 09ec8d8446
commit 52d1de042c
Signed by: eduard
GPG key ID: 49226B848C78F6C8
10 changed files with 170 additions and 27 deletions

View file

@ -22,9 +22,10 @@ type Function struct {
// counter stores how often a certain statement appeared so we can generate a unique label from it.
type counter struct {
assert int
branch int
data int
loop int
subBranch int
assert int
branch int
multiBranch int
data int
loop int
subBranch int
}