mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
12 lines
340 B
Go
12 lines
340 B
Go
|
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
|
||
|
)
|