kaish-kernel 0.8.0

Core kernel for kaish: lexer, parser, interpreter, and runtime
Documentation
1
2
3
4
5
6
7
8
//! Validation issues and formatting.
//!
//! These types moved to the leaf `kaish-tool-api` crate (the `Tool::validate`
//! contract returns them). Re-exported here so existing
//! `crate::validator::{ValidationIssue, IssueCode, Severity, Span}` paths keep
//! working and resolve to the same types the `Tool` trait uses.

pub use kaish_tool_api::{IssueCode, Severity, Span, ValidationIssue};