...

Source file src/github.com/chenzhuoyu/iasm/expr/term.go

Documentation: github.com/chenzhuoyu/iasm/expr

     1  package expr
     2  
     3  // Term represents a value that can Evaluate() into an integer.
     4  type Term interface {
     5      Free()
     6      Evaluate() (int64, error)
     7  }
     8  

View as plain text