jetro-core 0.5.10

jetro-core: parser, compiler, and VM for the Jetro JSON query language
Documentation
1
2
3
4
5
6
7
//! Frontend: parser and AST construction.
//!
//! Source text enters through `parser::parse` and leaves as an `ast::Expr`.

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