(commentText: string)
| 61 | } |
| 62 | |
| 63 | static removeCommentSyntax(commentText: string): string { |
| 64 | return commentText |
| 65 | .replace(/\/\*\*|\*\/|\*|\/\* ?/gm, "") |
| 66 | .replace(/^ /gm, "") |
| 67 | .trim(); |
| 68 | } |
| 69 | |
| 70 | static getFirstCommentBlock(sourceFile: ts.SourceFile): string | null { |
| 71 | for (const statement of sourceFile.statements) { |
no outgoing calls
no test coverage detected