Implemented definitions

This commit is contained in:
2024-06-30 12:28:43 +02:00
parent 247b82b529
commit 7e5d45f17d
6 changed files with 70 additions and 14 deletions

View File

@ -2,11 +2,18 @@ package build
import (
"git.akyoto.dev/cli/q/src/build/cpu"
"git.akyoto.dev/cli/q/src/build/expression"
)
// Variable represents a variable in a function.
// Variable represents a named register.
type Variable struct {
Name string
Register cpu.Register
Alive int
}
// Definitions are single use expressions that don't reside in a register yet.
type Definition struct {
Name string
Value *expression.Expression
}