| 451 | /// Represents a comment block (ex. `/* my comment */`). |
| 452 | #[derive(Debug, PartialEq, Clone)] |
| 453 | pub struct CommentBlock<'a> { |
| 454 | pub range: Range, |
| 455 | pub text: &'a str, |
| 456 | } |
| 457 | |
| 458 | // Object Property Name |
| 459 |
no outgoing calls
no test coverage detected
searching dependent graphs…