// SPDX-License-Identifier: Apache-2.0
//! `CodegraphError` — errors surfaced by extraction and resolution.
//!
//! Deliberately small and storage-free. Consumers map these into their own
//! error domains at their boundary.
/// Errors that can arise while turning source into structural facts.
/// Convenience alias for code2graph fallible operations.
pub type Result<T> = Result;