(node)
| 89 | { |
| 90 | theme: "github-dark", |
| 91 | onVisitLine(node) { |
| 92 | if (node.children.length === 0) { |
| 93 | node.children = [{ type: "text", value: " " }] |
| 94 | } |
| 95 | }, |
| 96 | onVisitHighlightedLine(node) { |
| 97 | node.properties.className.push("line--highlighted") |
| 98 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected