(message: string)
| 294 | } |
| 295 | |
| 296 | dispatchWarning(message: string) { |
| 297 | const error = this.#createError(message); |
| 298 | this.onWarning?.(error); |
| 299 | } |
| 300 | |
| 301 | yamlDirectiveHandler(args: string[]): string | null { |
| 302 | if (args.length !== 1) { |
no test coverage detected