increase AST size limit

This commit is contained in:
liquidex 2024-08-24 20:09:52 +02:00
parent ba89b6eb04
commit e801992ec3

View file

@ -44,7 +44,7 @@ max_chunks = 2
max_defs = 256
# Maximum amount of AST nodes in a single parse.
ast_capacity = 1024
ast_capacity = 4096
# Maximum size of a bytecode chunk.
# This must be <= 65536 due to bytecode limitations - offsets are stored as 16-bit integers.