(comment: &Comment)
| 239 | } |
| 240 | |
| 241 | fn comment_to_test_str(comment: &Comment) -> String { |
| 242 | match comment { |
| 243 | Comment::Line(line) => comment_line_to_test_str(line), |
| 244 | Comment::Block(block) => comment_block_to_test_str(block), |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | fn comment_line_to_test_str(line: &CommentLine) -> String { |
| 249 | lit_to_test_str("line", line.text, line.range) |
no test coverage detected
searching dependent graphs…