(comment ast.CommentRange)
| 3046 | } |
| 3047 | |
| 3048 | func (p *Printer) commentWillEmitNewLine(comment ast.CommentRange) bool { |
| 3049 | return comment.Kind == ast.KindSingleLineCommentTrivia || comment.HasTrailingNewLine |
| 3050 | } |
| 3051 | |
| 3052 | func (p *Printer) syntheticCommentWillEmitNewLine(comment SynthesizedComment) bool { |
| 3053 | return comment.Kind == ast.KindSingleLineCommentTrivia || comment.HasTrailingNewLine |
no outgoing calls
no test coverage detected