sim_expr_tree_core/path.rs
1use sim_table_core::{TablePath, TablePathRef, TablePathRefError};
2
3/// Resolve a canonical expression-tree namespace reference.
4///
5/// This crate deliberately reuses `sim-table-core` path references and does not
6/// define a local path parser.
7pub fn resolve_namespace_path(
8 base: &TablePath,
9 reference: &TablePathRef,
10) -> Result<TablePath, TablePathRefError> {
11 base.resolve(reference)
12}