(
self, *, ctx: Context, node_input: Any
)
| 708 | rerun_on_resume: bool = True |
| 709 | |
| 710 | async def _run_impl( |
| 711 | self, *, ctx: Context, node_input: Any |
| 712 | ) -> AsyncGenerator[Any, None]: |
| 713 | result = await ctx.run_node(_ChildNode(name='child'), 'hello') |
| 714 | yield f'parent got: {result}' |
| 715 | |
| 716 | events, _, _ = await _run_node(_ParentNode(name='parent'), message='go') |
| 717 |
nothing calls this directly
no test coverage detected