Create a new span
(start: u32, end: u32, file_id: u32)
| 19 | impl Span { |
| 20 | /// Create a new span |
| 21 | pub fn new(start: u32, end: u32, file_id: u32) -> Self { |
| 22 | Self { start, end, file_id } |
| 23 | } |
| 24 | |
| 25 | /// Create a dummy span (for testing/generated code) |
| 26 | pub fn dummy() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected