summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/objects/bool.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-01-09 21:52:19 +0100
committerGitHub <noreply@github.com>2020-01-09 21:52:19 +0100
commit9d84d6dd643c4017074e81465671cd9b25f9539a (patch)
tree8a767f91d655a6cf21d476e4fb7aa6fd8a952df8 /vendor/github.com/d5/tengo/objects/bool.go
parent0f708daf2d14dcca261ef98cc698a1b1f2a6aa74 (diff)
downloadmatterbridge-msglm-9d84d6dd643c4017074e81465671cd9b25f9539a.tar.gz
matterbridge-msglm-9d84d6dd643c4017074e81465671cd9b25f9539a.tar.bz2
matterbridge-msglm-9d84d6dd643c4017074e81465671cd9b25f9539a.zip
Update to tengo v2 (#976)
Diffstat (limited to 'vendor/github.com/d5/tengo/objects/bool.go')
-rw-r--r--vendor/github.com/d5/tengo/objects/bool.go64
1 files changed, 0 insertions, 64 deletions
diff --git a/vendor/github.com/d5/tengo/objects/bool.go b/vendor/github.com/d5/tengo/objects/bool.go
deleted file mode 100644
index ac9949e4..00000000
--- a/vendor/github.com/d5/tengo/objects/bool.go
+++ /dev/null
@@ -1,64 +0,0 @@
-package objects
-
-import (
- "github.com/d5/tengo/compiler/token"
-)
-
-// Bool represents a boolean value.
-type Bool struct {
- // this is intentionally non-public to force using objects.TrueValue and FalseValue always
- value bool
-}
-
-func (o *Bool) String() string {
- if o.value {
- return "true"
- }
-
- return "false"
-}
-
-// TypeName returns the name of the type.
-func (o *Bool) TypeName() string {
- return "bool"
-}
-
-// BinaryOp returns another object that is the result of
-// a given binary operator and a right-hand side object.
-func (o *Bool) BinaryOp(op token.Token, rhs Object) (Object, error) {
- return nil, ErrInvalidOperator
-}
-
-// Copy returns a copy of the type.
-func (o *Bool) Copy() Object {
- return o
-}
-
-// IsFalsy returns true if the value of the type is falsy.
-func (o *Bool) IsFalsy() bool {
- return !o.value
-}
-
-// Equals returns true if the value of the type
-// is equal to the value of another object.
-func (o *Bool) Equals(x Object) bool {
- return o == x
-}
-
-// GobDecode decodes bool value from input bytes.
-func (o *Bool) GobDecode(b []byte) (err error) {
- o.value = b[0] == 1
-
- return
-}
-
-// GobEncode encodes bool values into bytes.
-func (o *Bool) GobEncode() (b []byte, err error) {
- if o.value {
- b = []byte{1}
- } else {
- b = []byte{0}
- }
-
- return
-}