(symbol)
| 371 | } |
| 372 | } |
| 373 | function aliasGlobalToImpl(symbol) { |
| 374 | if (typeof global[symbol] === "function") { |
| 375 | return false; |
| 376 | } |
| 377 | const impl = global[symbol + "__impl"]; |
| 378 | if (typeof impl !== "function") { |
| 379 | return false; |
| 380 | } |
| 381 | global[symbol] = impl; |
| 382 | cn1RefreshAlias(symbol, impl); |
| 383 | emitDiagLine("PARPAR:DIAG:INIT:aliasGlobalToImpl=" + symbol); |
| 384 | return true; |
| 385 | } |
| 386 | |
| 387 | function spawnVirtualCallback(receiver, methodId, args, pendingFlagKey) { |
| 388 | if (!receiver || !receiver.__class) { |
nothing calls this directly
no test coverage detected