@inheritdoc
(node: Document)
| 142 | |
| 143 | /** @inheritdoc */ |
| 144 | public override document(node: Document): void { |
| 145 | if (node.nodes.length === 0) { |
| 146 | this.builder(node.source?.input.css ?? ''); |
| 147 | } else { |
| 148 | super.document(node); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | /** @inheritdoc */ |
| 153 | public override raw( |
nothing calls this directly
no outgoing calls
no test coverage detected