lisette-diagnostics 0.1.4

Little language inspired by Rust that compiles to Go
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod diagnostic;
mod result;
mod sink;

pub mod infer;
pub mod lint;
pub mod module_graph;
pub mod pattern;
pub mod render;

pub use diagnostic::{IndexedSource, LisetteDiagnostic, Report};
pub use result::SemanticResult;
pub use sink::DiagnosticSink;

pub use lint::{IssueKind, UnusedExpressionKind};
pub use pattern::PatternIssue;