* @param {EvalContext} context * @param {CSSOutput} output
(context, output)
| 97 | * @param {CSSOutput} output |
| 98 | */ |
| 99 | genCSS(context, output) { |
| 100 | if (this.css && this.path._fileInfo.reference === undefined) { |
| 101 | output.add('@import ', this._fileInfo, this._index); |
| 102 | this.path.genCSS(context, output); |
| 103 | if (this.features) { |
| 104 | output.add(' '); |
| 105 | this.features.genCSS(context, output); |
| 106 | } |
| 107 | output.add(';'); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /** @returns {string | undefined} */ |
| 112 | getPath() { |