Note that `new:T` parameters are not handled, but should be before calling this function.
(p, index)
| 54088 | } |
| 54089 | /** Note that `new:T` parameters are not handled, but should be before calling this function. */ |
| 54090 | function getNameForJSDocFunctionParameter(p, index) { |
| 54091 | return p.name && ts.isIdentifier(p.name) && p.name.escapedText === "this" ? "this" |
| 54092 | : getEffectiveDotDotDotForParameter(p) ? "args" |
| 54093 | : "arg".concat(index); |
| 54094 | } |
| 54095 | function rewriteModuleSpecifier(parent, lit) { |
| 54096 | if (bundled) { |
| 54097 | if (context.tracker && context.tracker.moduleResolverHost) { |
no test coverage detected
searching dependent graphs…