#builder-pattern #snippets #abstraction #annotate #slice #annotations #annotate-snippets

yanked annotate_snippets_builder

Builder pattern abstraction for the annotate-snippets crate

0.1.1 Nov 20, 2022

#8 in #annotate

MIT license

7KB
162 lines

Builder pattern abstraction for the annotate-snippets crate.

use annotate_snippets_builder::{Annotation, AnnotationType, DisplayList, Slice, Snippet};
use stringx::Join;

fn main() {
	let src_1 = include_str!("./lex_invalid.rym").lines().skip(2).join("\n");

	let snippet = Snippet::new()
		.title(
			Annotation::new(AnnotationType::Error)
				.id("E4320")
				.label("Unexpected character"),
		)
		.add_slice(
			Slice {
				source: &src_1,
				line_start: 3,
			}
			.origin("./lex_invalid.rym")
			.annotation((3, 4), AnnotationType::Error, "invalid")
			.annotation((26, 32), AnnotationType::Error, "invalid"),
		)
		.add_slice(
			Slice {
				source: "Ident::Test",
				line_start: 129,
			}
			.origin("src/display.rs")
			.annotation((0, 11), AnnotationType::Warning, "Unused"),
		);

	let dl = DisplayList::from(snippet);
	println!("\n{}", dl.to_string());
}

How to install.

cargo add annotate_snippets_builder

Dependencies

~120–305KB