Removed dead code

This commit is contained in:
Eduard Urbach 2025-03-04 13:35:55 +01:00
parent 9a018f29e7
commit ada7aaa1e2
Signed by: eduard
GPG key ID: 49226B848C78F6C8
14 changed files with 54 additions and 63 deletions

View file

@ -5,10 +5,9 @@ import (
"git.urbach.dev/cli/q/src/fs"
"git.urbach.dev/cli/q/src/register"
"git.urbach.dev/cli/q/src/token"
"git.urbach.dev/cli/q/src/types"
)
// Function represents the smallest unit of code.
// Function is the smallest unit of code.
type Function struct {
register.Machine
Package string
@ -19,7 +18,6 @@ type Function struct {
Body token.List
Input []*Parameter
Output []*Parameter
OutputTypes []types.Type
Dependencies []*Function
DLLs dll.List
Err error