(comment ast.CommentRange)
| 5761 | } |
| 5762 | |
| 5763 | func (p *Printer) emitComment(comment ast.CommentRange) { |
| 5764 | p.emitPos(comment.Pos()) |
| 5765 | p.writeCommentRange(comment) |
| 5766 | p.emitPos(comment.End()) |
| 5767 | } |
| 5768 | |
| 5769 | func (p *Printer) isTripleSlashComment(comment ast.CommentRange) bool { |
| 5770 | return p.currentSourceFile != nil && |
no test coverage detected