Skip to main content

wave_compiler/diagnostics/
mod.rs

1// Copyright 2026 Ojima Abraham
2// SPDX-License-Identifier: Apache-2.0
3
4//! Compiler diagnostics: error types, source mapping, and error reporting.
5//!
6//! Provides structured error types and formatting utilities for
7//! presenting compiler errors to users with source context.
8
9pub mod error;
10pub mod report;
11pub mod source_map;
12
13pub use error::CompileError;
14pub use report::format_error;
15pub use source_map::SourceMap;