* @param {EvalContext} context * @param {CSSOutput} output
(context, output)
| 183 | * @param {CSSOutput} output |
| 184 | */ |
| 185 | genCSS(context, output) { |
| 186 | let i, element; |
| 187 | if ((!context || !/** @type {EvalContext & { firstSelector?: boolean }} */ (context).firstSelector) && this.elements[0].combinator.value === '') { |
| 188 | output.add(' ', this.fileInfo(), this.getIndex()); |
| 189 | } |
| 190 | for (i = 0; i < this.elements.length; i++) { |
| 191 | element = this.elements[i]; |
| 192 | element.genCSS(context, output); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | getIsOutput() { |
| 197 | return this.evaldCondition; |