(node)
| 336 | patches.push({from: node.start, to: node.declaration.start, text: ""}) |
| 337 | }, |
| 338 | ExportDefaultDeclaration(node) { |
| 339 | if (/Declaration/.test(node.declaration.type)) { |
| 340 | patches.push({from: node.start, to: node.declaration.start, text: ""}) |
| 341 | } else { |
| 342 | patches.push({from: node.start, to: node.declaration.start, text: ";("}, |
| 343 | {from: node.declaration.end, text: ")"}) |
| 344 | } |
| 345 | }, |
| 346 | ExportAllDeclaration: function(node) { |
| 347 | patches.push({from: node.start, to: node.end, text: ""}) |
| 348 | } |
nothing calls this directly
no outgoing calls
no test coverage detected