(message, opts = {})
| 144 | } |
| 145 | |
| 146 | error(message, opts = {}) { |
| 147 | if (this.source) { |
| 148 | let { end, start } = this.rangeBy(opts) |
| 149 | return this.source.input.error( |
| 150 | message, |
| 151 | { column: start.column, line: start.line }, |
| 152 | { column: end.column, line: end.line }, |
| 153 | opts |
| 154 | ) |
| 155 | } |
| 156 | return new CssSyntaxError(message) |
| 157 | } |
| 158 | |
| 159 | getProxyProcessor() { |
| 160 | return { |