neoneo-go/pkg/vm/stack/boolean.go
2019-03-15 22:30:25 +00:00

21 lines
427 B
Go

package stack
// Boolean represents a boolean value on the stack
type Boolean struct {
*abstractItem
val bool
}
//NewBoolean returns a new boolean stack item
func NewBoolean(val bool) (*Boolean, error) {
return &Boolean{
&abstractItem{},
val,
}, nil
}
// Boolean overrides the default implementation
// by the abstractItem, returning a Boolean struct
func (b *Boolean) Boolean() (*Boolean, error) {
return b, nil
}