(node)
| 60511 | return constraints ? getSubstitutionType(type, getIntersectionType(ts.append(constraints, type))) : type; |
| 60512 | } |
| 60513 | function isJSDocTypeReference(node) { |
| 60514 | return !!(node.flags & 8388608 /* NodeFlags.JSDoc */) && (node.kind === 178 /* SyntaxKind.TypeReference */ || node.kind === 200 /* SyntaxKind.ImportType */); |
| 60515 | } |
| 60516 | function checkNoTypeArguments(node, symbol) { |
| 60517 | if (node.typeArguments) { |
| 60518 | error(node, ts.Diagnostics.Type_0_is_not_generic, symbol ? symbolToString(symbol) : node.typeName ? ts.declarationNameToString(node.typeName) : anon); |
no outgoing calls
no test coverage detected
searching dependent graphs…