(node, _path, meta)
| 825 | |
| 826 | visit(ast, { |
| 827 | Attribute(node, _path, meta) { |
| 828 | if (!matcher.hasStaticAttr(node.name.name)) return |
| 829 | |
| 830 | meta.sortTextNodes = true |
| 831 | }, |
| 832 | |
| 833 | CallExpression(node, _path, meta) { |
| 834 | // Traverse property accesses and function calls to find the *trailing* ident |
nothing calls this directly
no test coverage detected
searching dependent graphs…