(node, c)
| 325 | |
| 326 | recursiveWalk(ast, { |
| 327 | VariableDeclarator(node, c) { |
| 328 | walkPattern(node.id, c, (name) => { |
| 329 | ensureData(scopes[scopes.length - 1], name).def = 1; |
| 330 | }); |
| 331 | if (node.init) c(node.init); |
| 332 | }, |
| 333 | ObjectExpression(node, c) { |
| 334 | // ignore the property identifiers |
| 335 | node.properties.forEach((node) => { |
nothing calls this directly
no test coverage detected