(symbol, fn)
| 738 | // port.js reassigns a cn1_* global, refresh the alias too or aliased |
| 739 | // call sites keep invoking the replaced function. |
| 740 | function cn1RefreshAlias(symbol, fn) { |
| 741 | if (typeof global.__cn1RefreshAlias === "function") { |
| 742 | global.__cn1RefreshAlias(symbol, fn); |
| 743 | } else if (global.__cn1Al && global.__cn1Al[symbol]) { |
| 744 | global[global.__cn1Al[symbol]] = fn; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | function installMissingGlobalDelegate(symbol, delegateSymbol, marker) { |
| 749 | if (typeof global[symbol] === "function") { |
no outgoing calls
no test coverage detected