(node, c)
| 341 | }); |
| 342 | }, |
| 343 | MemberExpression(node, c) { |
| 344 | c(node.object); |
| 345 | // Ignore a property identifier (a.X), but notice a[X] (computed props). |
| 346 | if (node.computed) { |
| 347 | c(node.property); |
| 348 | } |
| 349 | }, |
| 350 | FunctionDeclaration(node, c) { |
| 351 | handleFunction(node, c, true /* defun */); |
| 352 | }, |
nothing calls this directly
no test coverage detected