(d)
| 77524 | return symbol.valueDeclaration && ts.isParameter(symbol.valueDeclaration) && ts.isIdentifier(symbol.valueDeclaration.name); |
| 77525 | } |
| 77526 | function isValidDeclarationForTupleLabel(d) { |
| 77527 | return d.kind === 197 /* SyntaxKind.NamedTupleMember */ || (ts.isParameter(d) && d.name && ts.isIdentifier(d.name)); |
| 77528 | } |
| 77529 | function getNameableDeclarationAtPosition(signature, pos) { |
| 77530 | var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); |
| 77531 | if (pos < paramCount) { |
no outgoing calls
no test coverage detected
searching dependent graphs…