Example #1
0
File: node.go Project: jbert/gol
func (ni NodeInt) NodeUnify(t typ.Type, env typ.Env) error {
	return t.Unify(typ.Int)
}
Example #2
0
File: node.go Project: jbert/gol
func (ns NodeString) NodeUnify(t typ.Type, env typ.Env) error {
	return t.Unify(typ.String)
}
Example #3
0
File: node.go Project: jbert/gol
func (nb NodeBool) NodeUnify(t typ.Type, env typ.Env) error {
	return t.Unify(typ.Bool)
}
Example #4
0
File: node.go Project: jbert/gol
func (ns NodeSymbol) NodeUnify(t typ.Type, env typ.Env) error {
	return t.Unify(typ.Symbol)
}