q/src/types/Type.go
2024-08-08 12:55:25 +02:00

9 lines
128 B
Go

package types
// Type represents a type in the type system.
type Type struct {
Name string
Fields []*Field
Size uint8
}