(self)
| 362 | |
| 363 | @internalcode |
| 364 | async def _async_call(self) -> str: |
| 365 | rv = concat( |
| 366 | [x async for x in self._stack[self._depth](self._context)] # type: ignore |
| 367 | ) |
| 368 | |
| 369 | if self._context.eval_ctx.autoescape: |
| 370 | return Markup(rv) |
| 371 | |
| 372 | return rv |
| 373 | |
| 374 | @internalcode |
| 375 | def __call__(self) -> str: |