(text, lineMap, writer, commentPos, commentEnd, newLine)
| 115008 | } |
| 115009 | } |
| 115010 | function emitComment(text, lineMap, writer, commentPos, commentEnd, newLine) { |
| 115011 | if (!currentSourceFile || !shouldWriteComment(currentSourceFile.text, commentPos)) |
| 115012 | return; |
| 115013 | emitPos(commentPos); |
| 115014 | ts.writeCommentRange(text, lineMap, writer, commentPos, commentEnd, newLine); |
| 115015 | emitPos(commentEnd); |
| 115016 | } |
| 115017 | /** |
| 115018 | * Determine if the given comment is a triple-slash |
| 115019 | * |
nothing calls this directly
no test coverage detected
searching dependent graphs…