(path, options, print)
| 337 | } |
| 338 | |
| 339 | function printOpeningTag(path, options, print) { |
| 340 | const { node } = path; |
| 341 | |
| 342 | return [ |
| 343 | printOpeningTagStart(node, options), |
| 344 | printAttributes(path, options, print), |
| 345 | node.isSelfClosing ? "" : printOpeningTagEnd(node), |
| 346 | ]; |
| 347 | } |
| 348 | |
| 349 | function printOpeningTagStart(node, options) { |
| 350 | return node.prev && needsToBorrowNextOpeningTagStartMarker(node.prev) |
no test coverage detected
searching dependent graphs…