()
| 39 | } |
| 40 | |
| 41 | setMessage() { |
| 42 | this.message = this.plugin ? this.plugin + ': ' : '' |
| 43 | this.message += this.file ? this.file : '<css input>' |
| 44 | if (typeof this.line !== 'undefined') { |
| 45 | this.message += ':' + this.line + ':' + this.column |
| 46 | } |
| 47 | this.message += ': ' + this.reason |
| 48 | } |
| 49 | |
| 50 | showSourceCode(color) { |
| 51 | if (!this.source) return '' |
no outgoing calls
no test coverage detected