Improved instruction parser

This commit is contained in:
2024-06-15 14:46:44 +02:00
parent cf696a6f10
commit 57f1da10fe
7 changed files with 114 additions and 54 deletions

View File

@ -4,6 +4,7 @@ import "git.akyoto.dev/cli/q/src/build/token"
// Variable represents a variable in a function.
type Variable struct {
Name string
Value token.List
IsConst bool
}