(ctx context.Context)
| 418 | } |
| 419 | |
| 420 | func UseRenderTs(ctx context.Context) int64 { |
| 421 | vc := getRenderContext(ctx) |
| 422 | if vc == nil { |
| 423 | panic("UseRenderTs must be called within a component (no context)") |
| 424 | } |
| 425 | return vc.Root.RenderTs |
| 426 | } |
| 427 | |
| 428 | func QueueRefOp(ctx context.Context, ref *VDomRef, op VDomRefOperation) { |
| 429 | if ref == nil || !ref.HasCurrent { |
nothing calls this directly
no test coverage detected