(other: any)
| 155 | } |
| 156 | |
| 157 | equals(other: any): boolean { |
| 158 | if (!(other instanceof Namer)) { |
| 159 | return false; |
| 160 | } |
| 161 | return this.nameStyle === other.nameStyle && other._prefixes.equals(this._prefixes); |
| 162 | } |
| 163 | |
| 164 | hashCode(): number { |
| 165 | return this._prefixes.hashCode(); |
no outgoing calls
no test coverage detected