(id: number, ...optionalParams: StringSubstitution[])
| 288 | |
| 289 | const errorFormatter = getTypedFormatter('Error'); |
| 290 | export function errorID (id: number, ...optionalParams: StringSubstitution[]): void { |
| 291 | error(errorFormatter(id, ...optionalParams)); |
| 292 | } |
| 293 | |
| 294 | const assertFormatter = getTypedFormatter('Assert'); |
| 295 | export function assertID (condition: boolean, id: number, ...optionalParams: StringSubstitution[]): void { |
no test coverage detected