(name: string, lcName: string)
| 170 | } |
| 171 | |
| 172 | private maybeSetNormalizedName(name: string, lcName: string): void { |
| 173 | if (!this.normalizedNames.has(lcName)) { |
| 174 | this.normalizedNames.set(lcName, name); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | private init(): void { |
| 179 | if (!!this.lazyInit) { |
no test coverage detected