gotosocial/vendor/github.com/chenzhuoyu/iasm/expr/term.go

8 lines
143 B
Go
Raw Normal View History

package expr
// Term represents a value that can Evaluate() into an integer.
type Term interface {
Free()
Evaluate() (int64, error)
}