(isParent: boolean)
| 93 | } |
| 94 | |
| 95 | export function assertCurrentTNodeIsParent(isParent: boolean) { |
| 96 | assertEqual(isParent, true, 'currentTNode should be a parent'); |
| 97 | } |
| 98 | |
| 99 | export function assertHasParent(tNode: TNode | null) { |
| 100 | assertDefined(tNode, 'currentTNode should exist!'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…