()
| 261 | } |
| 262 | |
| 263 | function activateMemoizedCycleDetection() { |
| 264 | const circA = {}; |
| 265 | circA.self = circA; |
| 266 | const circB = {}; |
| 267 | circB.self = circB; |
| 268 | assert.deepStrictEqual(circA, circB); |
| 269 | } |
| 270 | |
| 271 | test('es6 Maps and Sets', () => { |
| 272 | assertDeepAndStrictEqual(new Set(), new Set()); |
no outgoing calls
no test coverage detected
searching dependent graphs…