| 17 | |
| 18 | @dataclass |
| 19 | class RenderContextSnapshot: |
| 20 | frid_context: Optional[FridContext] |
| 21 | conformance_tests_running_context: Optional[ConformanceTestsRunningContext] |
| 22 | unit_tests_running_context: Optional[UnitTestsRunningContext] |
| 23 | script_execution_history: Optional[ScriptExecutionHistory] |
| 24 | module_name: str |
| 25 | |
| 26 | |
| 27 | @dataclass |