(node, c)
| 361 | ensureData(scopes[scopes.length - 1], name).use = 1; |
| 362 | }, |
| 363 | ExportDefaultDeclaration(node, c) { |
| 364 | const name = node.declaration.id.name; |
| 365 | ensureData(scopes[scopes.length - 1], name).use = 1; |
| 366 | c(node.declaration); |
| 367 | }, |
| 368 | ExportNamedDeclaration(node, c) { |
| 369 | if (node.declaration) { |
| 370 | if (node.declaration.type == 'FunctionDeclaration') { |
nothing calls this directly
no test coverage detected