(connName: string)
| 270 | } |
| 271 | |
| 272 | function getSingleConnAtomCache(connName: string): Map<string, Atom<any>> { |
| 273 | // this is not a real "oref", but it will work for the cache. |
| 274 | const connORef = WOS.makeORef("conn", connName); |
| 275 | return getSingleOrefAtomCache(connORef); |
| 276 | } |
| 277 | |
| 278 | function getSingleOrefAtomCache(oref: string): Map<string, Atom<any>> { |
| 279 | let orefCache = orefAtomCache.get(oref); |
no test coverage detected