(node, semicolon)
| 125 | } |
| 126 | |
| 127 | decl(node, semicolon) { |
| 128 | let raws = node.raws |
| 129 | let between = this.raw(node, 'between', 'colon') |
| 130 | |
| 131 | let string = node.prop + between + this.rawValue(node, 'value') |
| 132 | |
| 133 | if (node.important) { |
| 134 | string += raws.important || ' !important' |
| 135 | } |
| 136 | |
| 137 | if (semicolon) string += ';' |
| 138 | this.builder(escapeHTMLInCSS(string), node) |
| 139 | } |
| 140 | |
| 141 | document(node) { |
| 142 | this.body(node) |
nothing calls this directly
no test coverage detected