(node, offset)
| 372 | } |
| 373 | |
| 374 | init(node, offset) { |
| 375 | this.current.push(node) |
| 376 | node.source = { |
| 377 | input: this.input, |
| 378 | start: this.getPosition(offset) |
| 379 | } |
| 380 | node.raws.before = this.spaces |
| 381 | this.spaces = '' |
| 382 | if (node.type !== 'comment') this.semicolon = false |
| 383 | } |
| 384 | |
| 385 | other(start) { |
| 386 | let end = false |