(d)
| 77473 | return type; |
| 77474 | } |
| 77475 | function getTupleElementLabel(d) { |
| 77476 | ts.Debug.assert(ts.isIdentifier(d.name)); // Parameter declarations could be binding patterns, but we only allow identifier names |
| 77477 | return d.name.escapedText; |
| 77478 | } |
| 77479 | function getParameterNameAtPosition(signature, pos, overrideRestType) { |
| 77480 | var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); |
| 77481 | if (pos < paramCount) { |
no test coverage detected
searching dependent graphs…