(node: Rule)
| 194 | } |
| 195 | |
| 196 | public override rule(node: Rule): void { |
| 197 | let value = this.rawValue(node, 'selector'); |
| 198 | if (value.includes(placeholderText)) { |
| 199 | const expressionStrings = node.root().raws.linariaTemplateExpressions; |
| 200 | value = substitutePlaceholders(value, expressionStrings); |
| 201 | } |
| 202 | this.block(node, value); |
| 203 | if (node.raws.ownSemicolon) { |
| 204 | this.builder(node.raws.ownSemicolon, node, 'end'); |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | export const stringify: StringifierFn = ( |
nothing calls this directly
no test coverage detected