Files
monkey/object/module.go
Chuck Smith 110152a139
Some checks failed
Build / build (push) Successful in 10m22s
Test / build (push) Failing after 15m54s
module support
2024-03-26 16:49:38 -04:00

30 lines
456 B
Go

package object
import "fmt"
// Module is the module type used to represent a collection of variabels.
type Module struct {
Name string
Attrs Object
}
func (m Module) String() string {
return m.Inspect()
}
func (m Module) Type() ObjectType {
return MODULE_OBJ
}
func (m Module) Bool() bool {
return true
}
func (m Module) Inspect() string {
return fmt.Sprintf("<module '%s'>", m.Name)
}
func (m Module) Compare(other Object) int {
return 1
}