()
| 433 | let __lastSubscription: Subscriptions | undefined; |
| 434 | |
| 435 | export function getLastSubscription(): Subscriptions | undefined { |
| 436 | // HACK(misko): This is a hack to get the last subscription. |
| 437 | // It is used by `executeSignalOperation` to update the target element |
| 438 | // after the subscription has been created. |
| 439 | return __lastSubscription; |
| 440 | } |
| 441 | |
| 442 | const must = <T>(a: T): NonNullable<T> => { |
| 443 | if (a == null) { |
no outgoing calls
no test coverage detected
searching dependent graphs…