diff options
author | Wim <wim@42.be> | 2019-03-05 23:08:54 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2019-03-05 23:10:45 +0100 |
commit | 325d62b41c03f0530513a4f404cc8d7349b6885b (patch) | |
tree | d6f9f2809bdcd3a35b696b412c24cf6f54ddab78 /vendor/github.com/d5/tengo/tengo.go | |
parent | e955a056e2aa4a07c6375315113886b2ee86138c (diff) | |
download | matterbridge-msglm-325d62b41c03f0530513a4f404cc8d7349b6885b.tar.gz matterbridge-msglm-325d62b41c03f0530513a4f404cc8d7349b6885b.tar.bz2 matterbridge-msglm-325d62b41c03f0530513a4f404cc8d7349b6885b.zip |
Update vendor d5/tengo
Diffstat (limited to 'vendor/github.com/d5/tengo/tengo.go')
-rw-r--r-- | vendor/github.com/d5/tengo/tengo.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/d5/tengo/tengo.go b/vendor/github.com/d5/tengo/tengo.go new file mode 100644 index 00000000..a883bbd7 --- /dev/null +++ b/vendor/github.com/d5/tengo/tengo.go @@ -0,0 +1,11 @@ +package tengo + +var ( + // MaxStringLen is the maximum byte-length for string value. + // Note this limit applies to all compiler/VM instances in the process. + MaxStringLen = 2147483647 + + // MaxBytesLen is the maximum length for bytes value. + // Note this limit applies to all compiler/VM instances in the process. + MaxBytesLen = 2147483647 +) |