(name: string)
| 1297 | 'requiresMainQueueSetup', 'methodQueue', |
| 1298 | ]); |
| 1299 | const norm = (name: string): string => { |
| 1300 | const i = name.indexOf(':'); |
| 1301 | return i >= 0 ? name.slice(0, i) : name; |
| 1302 | }; |
| 1303 | |
| 1304 | // Index native methods by their JS-visible (normalized) name. Only names with |
| 1305 | // impls in ≥2 native languages can pair, so the per-method JS-caller check |
no outgoing calls
no test coverage detected