(element: Element)
| 475 | } |
| 476 | |
| 477 | function isElementInAnyScope(element: Element) { |
| 478 | return isElementInChildScope(element); |
| 479 | } |
| 480 | |
| 481 | function isElementInScope(element?: Element | null, scope?: Element[] | null) { |
| 482 | if (!element) { |
no test coverage detected