(node)
| 19146 | } |
| 19147 | ts.tryGetPropertyAccessOrIdentifierToString = tryGetPropertyAccessOrIdentifierToString; |
| 19148 | function isPrototypeAccess(node) { |
| 19149 | return isBindableStaticAccessExpression(node) && getElementOrPropertyAccessName(node) === "prototype"; |
| 19150 | } |
| 19151 | ts.isPrototypeAccess = isPrototypeAccess; |
| 19152 | function isRightSideOfQualifiedNameOrPropertyAccess(node) { |
| 19153 | return (node.parent.kind === 161 /* SyntaxKind.QualifiedName */ && node.parent.right === node) || |
no test coverage detected
searching dependent graphs…