(other: any)
| 32 | abstract map(builder: TypeBuilder, f: (tref: TypeRef) => TypeRef): TypeRef; |
| 33 | |
| 34 | equals(other: any): boolean { |
| 35 | if (!Object.prototype.hasOwnProperty.call(other, "typeRef")) { |
| 36 | return false; |
| 37 | } |
| 38 | return this.typeRef.equals(other.typeRef); |
| 39 | } |
| 40 | |
| 41 | hashCode(): number { |
| 42 | return this.typeRef.hashCode(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…