anathema_value_resolver/
lib.rs

1pub use crate::attributes::{AttributeStorage, Attributes, ValueKey};
2pub use crate::context::ResolverCtx;
3pub use crate::functions::{Error, Function, FunctionTable};
4pub use crate::scope::Scope;
5pub use crate::value::{Collection, Value, ValueKind, resolve, resolve_collection};
6
7mod attributes;
8mod context;
9mod expression;
10mod functions;
11mod immediate;
12mod scope;
13mod value;
14
15#[cfg(test)]
16pub(crate) mod testing;