(info)
| 15214 | } |
| 15215 | ts.declarationNameToString = declarationNameToString; |
| 15216 | function getNameFromIndexInfo(info) { |
| 15217 | return info.declaration ? declarationNameToString(info.declaration.parameters[0].name) : undefined; |
| 15218 | } |
| 15219 | ts.getNameFromIndexInfo = getNameFromIndexInfo; |
| 15220 | function isComputedNonLiteralName(name) { |
| 15221 | return name.kind === 162 /* SyntaxKind.ComputedPropertyName */ && !isStringOrNumericLiteralLike(name.expression); |
nothing calls this directly
no test coverage detected