1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pub use crate::{
    duplicates::DuplicateError,
    errors::{ValkyrieError, ValkyrieErrorKind, ValkyrieReport, ValkyrieResult},
    managers::{
        list::{FileID, FileSpan},
        TextManager,
    },
    parsing::SyntaxError,
    runtime::RuntimeError,
};

pub mod third_party {
    #[cfg(feature = "dashu")]
    pub use dashu::{float::FBig, integer::IBig};
    #[cfg(feature = "num")]
    pub use num::BigInt;
    #[cfg(feature = "pratt")]
    pub use pratt::{Affix, Associativity, PrattParser, Precedence};
    pub use url::Url;
}

mod errors;

mod duplicates;
mod managers;
mod parsing;
mod runtime;
#[cfg(test)]
pub mod testing;