(path)
| 2287 | |
| 2288 | types.visit(ast, { |
| 2289 | visitStaticBlock(path) { |
| 2290 | assert.strictEqual(path.get("body", "length").value, 2); |
| 2291 | while (path.get("body").shift()) {} |
| 2292 | assert.strictEqual(path.get("body", "length").value, 0); |
| 2293 | return false; |
| 2294 | }, |
| 2295 | }); |
| 2296 | |
| 2297 | const emptyBlockReprinted = printer.print(ast).code; |
nothing calls this directly
no test coverage detected
searching dependent graphs…