q/src/build/core/Function.go
2024-07-23 22:14:23 +02:00

27 lines
555 B
Go

package core
import (
"git.akyoto.dev/cli/q/src/build/fs"
"git.akyoto.dev/cli/q/src/build/register"
"git.akyoto.dev/cli/q/src/build/token"
)
// Function represents the smallest unit of code.
type Function struct {
register.Machine
Name string
File *fs.File
Body []token.Token
Functions map[string]*Function
Err error
count counter
}
// counter stores how often a certain statement appeared so we can generate a unique label from it.
type counter struct {
branch int
data int
loop int
subBranch int
}