(node, semicolon)
| 356 | } |
| 357 | |
| 358 | stringify(node, semicolon) { |
| 359 | /* c8 ignore start */ |
| 360 | if (!this[node.type]) { |
| 361 | throw new Error( |
| 362 | 'Unknown AST node type ' + |
| 363 | node.type + |
| 364 | '. ' + |
| 365 | 'Maybe you need to change PostCSS stringifier.' |
| 366 | ) |
| 367 | } |
| 368 | /* c8 ignore stop */ |
| 369 | this[node.type](node, semicolon) |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | module.exports = Stringifier |