(contextToken, position)
| 134752 | && !(ts.isClassLike(contextToken.parent) && (contextToken !== previousToken || position > previousToken.end)); |
| 134753 | } |
| 134754 | function isPreviousPropertyDeclarationTerminated(contextToken, position) { |
| 134755 | return contextToken.kind !== 63 /* SyntaxKind.EqualsToken */ && |
| 134756 | (contextToken.kind === 26 /* SyntaxKind.SemicolonToken */ |
| 134757 | || !ts.positionsAreOnSameLine(contextToken.end, position, sourceFile)); |
| 134758 | } |
| 134759 | function isFunctionLikeButNotConstructor(kind) { |
| 134760 | return ts.isFunctionLikeKind(kind) && kind !== 171 /* SyntaxKind.Constructor */; |
| 134761 | } |
no outgoing calls
no test coverage detected