wootype 0.2.0

Blazing-fast Go type system service —— Vibe Coding toolchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Streaming validation pipeline
//!
//! Provides expression-level incremental type checking
//! with look-ahead inference and soft error handling.

pub mod checker;
pub mod concurrent;
pub mod error;
pub mod infer;
pub mod stream;

pub use checker::StreamingChecker;
pub use error::{ErrorSeverity, SoftError, ValidationError};
pub use infer::{LookaheadContext, TypeInference};
pub use stream::{ValidationEvent, ValidationStream};