hamelin_legacy 0.3.9

Legacy AST translation code for Hamelin (to be deprecated)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Legacy AST translation code for Hamelin.
//!
//! This crate contains the original one-shot AST translation code that will
//! eventually be deprecated in favor of the new typed AST approach in hamelin_lib.

pub mod ast;
pub mod compiler;
pub mod env;
pub mod translation;

pub use compiler::{Compiler, FunctionDescription, TimeRange};
pub use translation::{
    ContextualResult, DMLTranslation, QueryTranslation, StatementTranslation, Translation,
};