maxDepth constant

int const maxDepth

Deepest nesting this parser will follow. Recursion past it dies with a StackOverflowError — an Error, not an Exception, so no repository-level catch (Exception) would ever see it. Real Filament forms nest a handful of levels.

Implementation

static const int maxDepth = 32;