wootype 0.1.0

Type System as a Service - Rust-powered Go type checker for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Streaming validation pipeline
//! 
//! Provides expression-level incremental type checking
//! with look-ahead inference and soft error handling.

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

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