diff options
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 +) |