(ctx: RenderContext)
| 128 | }; |
| 129 | |
| 130 | export const pushRenderContext = (ctx: RenderContext): RenderContext => { |
| 131 | const newCtx: RenderContext = { |
| 132 | $static$: ctx.$static$, |
| 133 | $cmpCtx$: ctx.$cmpCtx$, |
| 134 | $slotCtx$: ctx.$slotCtx$, |
| 135 | }; |
| 136 | return newCtx; |
| 137 | }; |
| 138 | |
| 139 | export const serializeClassWithHost = ( |
| 140 | obj: ClassList, |
no outgoing calls
no test coverage detected
searching dependent graphs…