dampen-core 0.3.2

Core parser, IR, and traits for Dampen UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod ast;
pub mod error;
pub mod eval;
pub mod tokenizer;

pub use ast::{
    BinaryOp, BinaryOpExpr, BindingExpr, ConditionalExpr, Expr, FieldAccessExpr, LiteralExpr,
    MethodCallExpr, SharedFieldAccessExpr, UnaryOp, UnaryOpExpr,
};
pub use error::{BindingError, BindingErrorKind};
pub use eval::{
    evaluate_binding_expr, evaluate_binding_expr_with_shared, evaluate_expr,
    evaluate_expr_with_shared, evaluate_formatted, evaluate_formatted_with_shared,
};
pub use tokenizer::tokenize_binding_expr;