stck/lib.rs
1// Avaliabe to user
2pub mod api;
3pub mod cache;
4pub mod error;
5pub mod internals;
6pub mod prelude;
7
8// Avaliabe internally
9pub(crate) use error::{
10 ErrCtx, ErrorSource, LineRange, RuntimeError, RuntimeErrorCtx, RuntimeErrorKind, StckError,
11};
12pub(crate) use internals::*;
13pub(crate) use types::*;
14
15mod display;
16mod parse;
17mod preproc;
18mod runtime;
19mod token;
20mod types;
21
22#[cfg(test)]
23mod tests;