(node)
| 119 | } |
| 120 | |
| 121 | comment(node) { |
| 122 | let left = this.raw(node, 'left', 'commentLeft') |
| 123 | let right = this.raw(node, 'right', 'commentRight') |
| 124 | this.builder(escapeHTMLInCSS('/*' + left + node.text + right + '*/'), node) |
| 125 | } |
| 126 | |
| 127 | decl(node, semicolon) { |
| 128 | let raws = node.raws |
nothing calls this directly
no test coverage detected