()
| 12 | const als = new AsyncLocalStorage(); |
| 13 | |
| 14 | function test() { |
| 15 | const store = {}; |
| 16 | onGC(store, { ongc: common.mustCall(() => { storeGCed = true; }) }); |
| 17 | let parser; |
| 18 | als.run(store, common.mustCall(() => { |
| 19 | parser = parsers.alloc(); |
| 20 | parser.initialize(HTTPParser.RESPONSE, {}); |
| 21 | })); |
| 22 | freeParser(parser); |
| 23 | } |
| 24 | |
| 25 | test(); |
| 26 | global.gc(); |
no test coverage detected
searching dependent graphs…