| 444 | /// Represents a comment line (ex. `// my comment`). |
| 445 | #[derive(Debug, PartialEq, Clone)] |
| 446 | pub struct CommentLine<'a> { |
| 447 | pub range: Range, |
| 448 | pub text: &'a str, |
| 449 | } |
| 450 | |
| 451 | /// Represents a comment block (ex. `/* my comment */`). |
| 452 | #[derive(Debug, PartialEq, Clone)] |
no outgoing calls
no test coverage detected
searching dependent graphs…