@internal Returns the LatexSyntax instance, lazily creating one * if a factory is registered. Throws if no LatexSyntax is available.
()
| 1608 | |
| 1609 | /** Signal `recursion-depth-exceeded` when the recursion depth for this |
| 1610 | * scope is exceeded. |
| 1611 | * |
| 1612 | * @experimental |
| 1613 | */ |
| 1614 | get recursionLimit(): number { |
| 1615 | return this._runtimeState.recursionLimit; |
| 1616 | } |
| 1617 | set recursionLimit(t: number) { |
| 1618 | this._runtimeState.recursionLimit = t; |
| 1619 | } |
| 1620 | |
| 1621 | /** @internal Enter a user-function application; throws a `CancellationError` |