Deeply nested Jsonnet input causes a stack overflow in the recursive descent
parser, since there is no depth limit on parse() calls.
python3 -c "print('(' * 100000 + '1' + ')' * 100000)" > crash.jsonnet
jsonnet crash.jsonnet
# fatal error: stack overflow
Deeply nested Jsonnet input causes a stack overflow in the recursive descent
parser, since there is no depth limit on parse() calls.