Get a new unique identifier.
(self)
| 382 | raise TemplateAssertionError(msg, lineno, self.name, self.filename) |
| 383 | |
| 384 | def temporary_identifier(self) -> str: |
| 385 | """Get a new unique identifier.""" |
| 386 | self._last_identifier += 1 |
| 387 | return f"t_{self._last_identifier}" |
| 388 | |
| 389 | def buffer(self, frame: Frame) -> None: |
| 390 | """Enable buffering for the frame from that point onwards.""" |
no outgoing calls
no test coverage detected