aver-lang 0.14.2

VM and transpiler for Aver, a statically-typed language designed for AI-assisted development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Thin compatibility shim over `aver::diagnostics`.
//!
//! Historical users in `commands.rs` / `replay_cmd.rs` reach factories,
//! types, and `json_escape` through `super::diagnostic::*`. The canonical
//! home for all of them is `aver::diagnostics`; this file is intentionally
//! minimal and will be removed once every caller imports the canonical path
//! directly.

#![allow(unused_imports)]

pub(super) use aver::diagnostics::{
    AnalysisReport, AnalyzeOptions, AnnotatedRegion, Diagnostic, RelatedSpan, Repair,
    SCHEMA_VERSION, Severity, SourceLine, Span, Underline, analyze_source, from_check_finding,
    from_type_error, json_escape, replay_effect_error_diagnostic,
    replay_output_mismatch_diagnostic, unused_binding_diagnostic, verify_mismatch_diagnostic,
    verify_runtime_error_diagnostic, verify_unexpected_err_diagnostic,
};