(self, arguments, autoescape)
| 99 | def wrap_macro_invoke(original_invoke): |
| 100 | @internalcode |
| 101 | async def async_invoke(self, arguments, autoescape): |
| 102 | rv = await self._func(*arguments) |
| 103 | if autoescape: |
| 104 | rv = Markup(rv) |
| 105 | return rv |
| 106 | |
| 107 | @internalcode |
| 108 | def _invoke(self, arguments, autoescape): |