(
message: string,
line: number,
col: number,
rule: Rule,
raw: string
)
| 44 | } |
| 45 | |
| 46 | public error( |
| 47 | message: string, |
| 48 | line: number, |
| 49 | col: number, |
| 50 | rule: Rule, |
| 51 | raw: string |
| 52 | ): void { |
| 53 | this.report(ReportType.error, message, line, col, rule, raw) |
| 54 | } |
| 55 | |
| 56 | private report( |
| 57 | type: ReportType, |
no test coverage detected