2019-01-09 10:17:42 +03:00
|
|
|
package tengo
|
2019-03-01 21:48:02 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
)
|