(message: string)
| 283 | } |
| 284 | |
| 285 | dispatchWarning(message: string) { |
| 286 | const error = this.#createError(message); |
| 287 | this.onWarning?.(error); |
| 288 | } |
| 289 | |
| 290 | yamlDirectiveHandler(args: string[]): string | null { |
| 291 | if (args.length !== 1) { |
no test coverage detected