(pos, prefixSpace, forceNoNewline)
| 114931 | } |
| 114932 | } |
| 114933 | function emitTrailingCommentsOfPosition(pos, prefixSpace, forceNoNewline) { |
| 114934 | if (commentsDisabled) { |
| 114935 | return; |
| 114936 | } |
| 114937 | enterComment(); |
| 114938 | forEachTrailingCommentToEmit(pos, prefixSpace ? emitTrailingComment : forceNoNewline ? emitTrailingCommentOfPositionNoNewline : emitTrailingCommentOfPosition); |
| 114939 | exitComment(); |
| 114940 | } |
| 114941 | function emitTrailingCommentOfPositionNoNewline(commentPos, commentEnd, kind) { |
| 114942 | if (!currentSourceFile) |
| 114943 | return; |
no test coverage detected
searching dependent graphs…