restructure project
This commit is contained in:
29
internal/object/module.go
Normal file
29
internal/object/module.go
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user