regast-syntax 0.1.0

Lossless syntax tree for the regast regular expression engine
Documentation
//! Lossless regular-expression syntax trees.

mod ast;
mod class;
mod cursor;
mod error;
mod node_map;
mod parser;
pub mod print;
mod span;
mod visit;

pub use ast::{AnchorKind, AstKind, GroupInfo, GroupKind, Node, Pattern, RepKind};
pub use class::{ClassItem, ClassRange, ClassSet, PerlClass};
pub use cursor::{Ancestors, Children, Cursor, Walk};
pub use error::{ParseError, ParseErrorKind};
pub use node_map::NodeMap;
pub use parser::parse;
pub use print::JsonShape;
pub use span::{NodeId, Span};
pub use visit::{Flow, Visitor, visit};