(node, classDeclaration)
| 86216 | }); |
| 86217 | } |
| 86218 | function isNodeWithinClass(node, classDeclaration) { |
| 86219 | return !!forEachEnclosingClass(node, function (n) { return n === classDeclaration; }); |
| 86220 | } |
| 86221 | function getLeftSideOfImportEqualsOrExportAssignment(nodeOnRightSide) { |
| 86222 | while (nodeOnRightSide.parent.kind === 161 /* SyntaxKind.QualifiedName */) { |
| 86223 | nodeOnRightSide = nodeOnRightSide.parent; |
no test coverage detected