(symbol, type)
| 62006 | return str; |
| 62007 | } |
| 62008 | function getStringMappingTypeForGenericType(symbol, type) { |
| 62009 | var id = "".concat(getSymbolId(symbol), ",").concat(getTypeId(type)); |
| 62010 | var result = stringMappingTypes.get(id); |
| 62011 | if (!result) { |
| 62012 | stringMappingTypes.set(id, result = createStringMappingType(symbol, type)); |
| 62013 | } |
| 62014 | return result; |
| 62015 | } |
| 62016 | function createStringMappingType(symbol, type) { |
| 62017 | var result = createType(268435456 /* TypeFlags.StringMapping */); |
| 62018 | result.symbol = symbol; |
no test coverage detected
searching dependent graphs…