Normalize primitive and numeric constraints

This commit is contained in:
2026-06-16 11:22:09 +09:00
parent e23b31da46
commit 84680e2652
4 changed files with 350 additions and 3 deletions
+2
View File
@@ -3,6 +3,7 @@
extern crate alloc;
pub mod ast;
pub mod constraints;
pub mod diagnostic;
pub mod embedding;
pub mod eval;
@@ -13,6 +14,7 @@ pub mod runtime;
pub mod span;
pub use ast::{Ast, BinaryOp, CompareOp, Expr, ExprId, Field, Literal, Param};
pub use constraints::normalize_constraints;
pub use diagnostic::{Diagnostic, DiagnosticKind, Result};
pub use embedding::{HostField, HostValue};
pub use eval::Engine;