xgo/objects/object.go
2019-01-08 23:17:42 -08:00

12 lines
221 B
Go

package objects
import "github.com/d5/tengo/token"
type Object interface {
TypeName() string
String() string
BinaryOp(op token.Token, rhs Object) (Object, error)
IsFalsy() bool
Equals(Object) bool
Copy() Object
}