Current number of direct child fibers (readonly).
Reflects the length of lastChildren after the last reconciliation.
Returns the key of the fiber.
Sets the maximum allowed number of direct children for this fiber.
If current child count exceeds the new limit, excess oldest children are immediately unmounted.
New maximum (must be >= 0). Use Infinity to remove limit.
Returns the current maximum allowed number of direct children.
The limit (Infinity if no limit set)
Returns an array of ancestor entities, from closest to root.
Ancestor entities
Returns an array of ancestor fibers, from closest to root.
Ancestor fibers
Advisory maximum number of direct children allowed before warning or enforcement. Default: 40.
Can be changed via
setMaxChildren().Enforcement is soft by default (logs warning + removes excess oldest children). Set to
Infinityto disable limit.