(path: Ref, t: TypeRef)
| 198 | let typeForPath = Map<List<any>, TypeRef>(); |
| 199 | |
| 200 | function setTypeForPath(path: Ref, t: TypeRef): void { |
| 201 | typeForPath = typeForPath.set(makeImmutablePath(path), t); |
| 202 | } |
| 203 | |
| 204 | function unifyTypes(typesToUnify: TypeRef[], typeName: string, isInferred: boolean): TypeRef { |
| 205 | if (typesToUnify.length === 0) { |
no test coverage detected
searching dependent graphs…