1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![feature(once_cell)]
#![feature(box_syntax)]
#![allow(clippy::needless_return)]
#![doc = include_str ! ("../Readme.md")]
pub use crate::{
errors::{PsiError, PsiErrorKind},
language_aspect::{
manager::{LanguageRegistry, LANGUAGE_REGISTRY_INSTANCE},
LanguageID,
},
};
pub mod errors;
pub mod file_aspect;
pub mod language_aspect;