(name, parent)
| 75112 | (ts.getCheckFlags(prop) & 1 /* CheckFlags.Instantiated */ ? getSymbolLinks(prop).target : prop).isReferenced = 67108863 /* SymbolFlags.All */; |
| 75113 | } |
| 75114 | function isSelfTypeAccess(name, parent) { |
| 75115 | return name.kind === 108 /* SyntaxKind.ThisKeyword */ |
| 75116 | || !!parent && ts.isEntityNameExpression(name) && parent === getResolvedSymbol(ts.getFirstIdentifier(name)); |
| 75117 | } |
| 75118 | function isValidPropertyAccess(node, propertyName) { |
| 75119 | switch (node.kind) { |
| 75120 | case 206 /* SyntaxKind.PropertyAccessExpression */: |
no test coverage detected
searching dependent graphs…