(end, cb)
| 114975 | } |
| 114976 | } |
| 114977 | function forEachTrailingCommentToEmit(end, cb) { |
| 114978 | // Emit the trailing comments only if the container's end doesn't match because the container should take care of emitting these comments |
| 114979 | if (currentSourceFile && (containerEnd === -1 || (end !== containerEnd && end !== declarationListContainerEnd))) { |
| 114980 | ts.forEachTrailingCommentRange(currentSourceFile.text, end, cb); |
| 114981 | } |
| 114982 | } |
| 114983 | function hasDetachedComments(pos) { |
| 114984 | return detachedCommentsInfo !== undefined && ts.last(detachedCommentsInfo).nodePos === pos; |
| 114985 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…