(node)
| 165319 | }; |
| 165320 | } |
| 165321 | function getNodeForQuickInfo(node) { |
| 165322 | if (ts.isNewExpression(node.parent) && node.pos === node.parent.pos) { |
| 165323 | return node.parent.expression; |
| 165324 | } |
| 165325 | if (ts.isNamedTupleMember(node.parent) && node.pos === node.parent.pos) { |
| 165326 | return node.parent; |
| 165327 | } |
| 165328 | if (ts.isImportMeta(node.parent) && node.parent.name === node) { |
| 165329 | return node.parent; |
| 165330 | } |
| 165331 | return node; |
| 165332 | } |
| 165333 | function shouldGetType(sourceFile, node, position) { |
| 165334 | switch (node.kind) { |
| 165335 | case 79 /* SyntaxKind.Identifier */: |
no outgoing calls
no test coverage detected