Added simple variable lifetimes

This commit is contained in:
2024-06-27 15:23:02 +02:00
parent dc497ba4fb
commit ec5240425b
6 changed files with 107 additions and 39 deletions

View File

@ -6,6 +6,7 @@ import (
// Variable represents a variable in a function.
type Variable struct {
Name string
Register cpu.Register
Name string
Register cpu.Register
UsesRemaining int
}