(path, file)
| 335 | |
| 336 | JSXFragment: { |
| 337 | exit(path, file) { |
| 338 | let callExpr; |
| 339 | if (get(file, "runtime") === "classic") { |
| 340 | callExpr = buildCreateElementFragmentCall(path, file)!; |
| 341 | } else { |
| 342 | callExpr = buildJSXFragmentCall(path, file); |
| 343 | } |
| 344 | |
| 345 | path.replaceWith(t.inherits(callExpr, path.node)); |
| 346 | }, |
| 347 | }, |
| 348 | |
| 349 | JSXElement: { |
nothing calls this directly
no test coverage detected
searching dependent graphs…