(node: AtRule, semicolon?: boolean)
| 84 | } |
| 85 | |
| 86 | public override atrule(node: AtRule, semicolon?: boolean) { |
| 87 | const { params } = node; |
| 88 | |
| 89 | const expressionStrings = node.root().raws.linariaTemplateExpressions; |
| 90 | if (params.includes(placeholderText)) { |
| 91 | // eslint-disable-next-line no-param-reassign |
| 92 | node.params = substitutePlaceholders(params, expressionStrings); |
| 93 | } |
| 94 | |
| 95 | super.atrule(node, semicolon); |
| 96 | } |
| 97 | |
| 98 | /** @inheritdoc */ |
| 99 | public override comment(node: Comment): void { |
nothing calls this directly
no test coverage detected