(type, name)
| 59506 | return findApplicableIndexInfo(getIndexInfosOfType(type), keyType); |
| 59507 | } |
| 59508 | function getApplicableIndexInfoForName(type, name) { |
| 59509 | return getApplicableIndexInfo(type, isLateBoundName(name) ? esSymbolType : getStringLiteralType(ts.unescapeLeadingUnderscores(name))); |
| 59510 | } |
| 59511 | // Return list of type parameters with duplicates removed (duplicate identifier errors are generated in the actual |
| 59512 | // type checking functions). |
| 59513 | function getTypeParametersFromDeclaration(declaration) { |
no test coverage detected
searching dependent graphs…