merc_syntax 1.0.0

Provides an AST and Pest grammar for the mCRL2 specification language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]

mod consume;
mod parse;
mod precedence;
mod syntax_tree;
mod syntax_tree_display;
mod visitor;

pub use consume::*;
pub use parse::*;
pub use precedence::*;
pub use syntax_tree::*;
pub use syntax_tree_display::*;
pub use visitor::*;