Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

annotation sometimes points at the line above the correct line #177

Closed
BurntSushi opened this issue Jan 14, 2025 · 2 comments
Closed

annotation sometimes points at the line above the correct line #177

BurntSushi opened this issue Jan 14, 2025 · 2 comments

Comments

@BurntSushi
Copy link
Member

BurntSushi commented Jan 14, 2025

Here is a repro program (note the assert to make it clear where the span is pointing):

use annotate_snippets::{Level, Renderer, Snippet};

fn main() {
    let source = "    \"\"\"Summary.\n\nDescription.\n\n    \"\"\"\n";
    assert_eq!(&source[17..], "Description.\n\n    \"\"\"\n");
    let src_annotation = Level::Error.span(17..17).label("D207");
    let snippet =
        Snippet::source(source).line_start(230).annotation(src_annotation);
    let message = Level::Error.title("").snippet(snippet);

    println!("{}", Renderer::plain().render(message));
}

The actual output:

error
    |
230 |     """Summary.
231 |
    | ^ D207
232 | Description.
233 |
234 |     """
    |

And the expected output:

error
    |
230 |     """Summary.
231 |
232 | Description.
    | ^ D207
233 |
234 |     """
    |

In annotate-snippets 0.9.2, the rendering targeted the right line, but the ^ is missing. Here's a repro program for that:

use annotate_snippets::{
    display_list::{DisplayList, FormatOptions},
    snippet::{AnnotationType, Slice, Snippet, SourceAnnotation},
};

fn main() {
    let source = "    \"\"\"Summary.\n\nDescription.\n\n    \"\"\"\n";
    let snippet = Snippet {
        title: None,
        footer: vec![],
        slices: vec![Slice {
            source,
            line_start: 230,
            origin: None,
            annotations: vec![SourceAnnotation {
                range: (17, 17),
                label: "D207",
                annotation_type: AnnotationType::Error,
            }],
            fold: false,
        }],
        opt: FormatOptions {
            color: false,
            anonymized_line_numbers: false,
            margin: None,
        },
    };
    println!("{message}", message = DisplayList::from(snippet));
}

And the output:

    |
230 |     """Summary.
231 |
232 | Description.
    |  D207
233 |
234 |     """
    |
@epage
Copy link
Contributor

epage commented Jan 14, 2025

This looks like an empty span immediately before the start of a line. How is this different than #176?

@BurntSushi
Copy link
Member Author

Ah right right. I think the whitespace made this look different to my brain, but you're absolutely right. I'll close in favor of #176.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants