(node)
| 18574 | } |
| 18575 | ts.isThisIdentifier = isThisIdentifier; |
| 18576 | function isThisInTypeQuery(node) { |
| 18577 | if (!isThisIdentifier(node)) { |
| 18578 | return false; |
| 18579 | } |
| 18580 | while (ts.isQualifiedName(node.parent) && node.parent.left === node) { |
| 18581 | node = node.parent; |
| 18582 | } |
| 18583 | return node.parent.kind === 181 /* SyntaxKind.TypeQuery */; |
| 18584 | } |
| 18585 | ts.isThisInTypeQuery = isThisInTypeQuery; |
| 18586 | function identifierIsThisKeyword(id) { |
| 18587 | return id.originalKeywordKind === 108 /* SyntaxKind.ThisKeyword */; |
nothing calls this directly
no test coverage detected