(node: HostNode)
| 169 | } |
| 170 | |
| 171 | host(node: HostNode) { |
| 172 | return ( |
| 173 | this.emit('@host', node.position) + |
| 174 | this.emit(` {\n${this.indent(1)}`) + |
| 175 | this.mapVisit(node.rules, '\n\n') + |
| 176 | this.emit(`${this.indent(-1)}\n}`) |
| 177 | ); |
| 178 | } |
| 179 | |
| 180 | rule(node: RuleNode) { |
| 181 | const indent = this.indent(); |