jetro-core 0.5.5

jetro-core: parser, compiler, and VM for the Jetro JSON query language
Documentation
1
2
3
4
5
6
7
8
9
//! Frontend: parser, AST, and chain-IR demand analysis.
//!
//! Source text enters through `parser::parse` and leaves as an `ast::Expr`.
//! `chain_ir` is a small post-AST helper used by downstream passes to reason
//! about per-step demand propagation in dotted method chains.

pub(crate) mod ast;
pub(crate) mod chain_ir;
pub(crate) mod parser;