summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/tengo.go
blob: a883bbd7d48b4bc5d84a255d62d8e0c834f551b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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
)