lisette-diagnostics 0.1.26

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
17
18
mod diagnostic;
mod result;
mod sink;

pub mod attribute;
pub mod emit;
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, TypedefSource};
pub use sink::LocalSink;

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