(win, id)
| 137 | * @return {T} |
| 138 | */ |
| 139 | export function getService(win, id) { |
| 140 | win = getTopWindow(win); |
| 141 | return getServiceInternal(win, id); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Returns a service for the given id and window (a per-window singleton). But |
no test coverage detected