(attr, _path, meta)
| 250 | |
| 251 | visit(ast, { |
| 252 | AttrNode(attr, _path, meta) { |
| 253 | if (matcher.hasStaticAttr(attr.name) && attr.value) { |
| 254 | meta.sortTextNodes = true |
| 255 | } |
| 256 | }, |
| 257 | |
| 258 | TextNode(node, path, meta) { |
| 259 | if (!meta.sortTextNodes) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…