(type, keyType)
| 59503 | return getIndexInfosOfType(type).filter(function (info) { return isApplicableIndexType(keyType, info.keyType); }); |
| 59504 | } |
| 59505 | function getApplicableIndexInfo(type, keyType) { |
| 59506 | return findApplicableIndexInfo(getIndexInfosOfType(type), keyType); |
| 59507 | } |
| 59508 | function getApplicableIndexInfoForName(type, name) { |
| 59509 | return getApplicableIndexInfo(type, isLateBoundName(name) ? esSymbolType : getStringLiteralType(ts.unescapeLeadingUnderscores(name))); |
| 59510 | } |
no test coverage detected
searching dependent graphs…