(text, opts = {})
| 2 | |
| 3 | class Warning { |
| 4 | constructor(text, opts = {}) { |
| 5 | this.type = 'warning' |
| 6 | this.text = text |
| 7 | |
| 8 | if (opts.node && opts.node.source) { |
| 9 | let range = opts.node.rangeBy(opts) |
| 10 | this.line = range.start.line |
| 11 | this.column = range.start.column |
| 12 | this.endLine = range.end.line |
| 13 | this.endColumn = range.end.column |
| 14 | } |
| 15 | |
| 16 | for (let opt in opts) this[opt] = opts[opt] |
| 17 | } |
| 18 | |
| 19 | toString() { |
| 20 | if (this.node) { |