* Checks the error to see if it has an error label * * @param label - The error label to check for * @returns returns true if the error has the provided error label
(label: string)
| 191 | * @returns returns true if the error has the provided error label |
| 192 | */ |
| 193 | hasErrorLabel(label: string): boolean { |
| 194 | return this.errorLabelSet.has(label); |
| 195 | } |
| 196 | |
| 197 | addErrorLabel(label: string): void { |
| 198 | this.errorLabelSet.add(label); |
no test coverage detected