next | previous | forward | backward | up | top | index | toc | home

recursionLimit -- set the limit on recursion

Synopsis

Description

Each time a function is called, the recursion depth is incremented by 1, and each time a function returns, the recursion depth is decremented. This limit on recursion depth is a way to detect infinite loops.

For the programmer

The object recursionLimit is an integer.