(name: string)
| 1686 | 'requiresMainQueueSetup', 'methodQueue', |
| 1687 | ]); |
| 1688 | const norm = (name: string): string => { |
| 1689 | const i = name.indexOf(':'); |
| 1690 | return i >= 0 ? name.slice(0, i) : name; |
| 1691 | }; |
| 1692 | |
| 1693 | // Index native methods by their JS-visible (normalized) name. Only names with |
| 1694 | // impls in ≥2 native languages can pair, so the per-method JS-caller check |
no outgoing calls
no test coverage detected