(self)
| 373 | |
| 374 | @internalcode |
| 375 | def __call__(self) -> str: |
| 376 | if self._context.environment.is_async: |
| 377 | return self._async_call() # type: ignore |
| 378 | |
| 379 | rv = concat(self._stack[self._depth](self._context)) |
| 380 | |
| 381 | if self._context.eval_ctx.autoescape: |
| 382 | return Markup(rv) |
| 383 | |
| 384 | return rv |
| 385 | |
| 386 | |
| 387 | class LoopContext: |
nothing calls this directly
no test coverage detected