blob: a2bb57662a729d2272c921c7c3f44efea2cf52bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! Syntax definition, parsing, and highlighting.
pub mod ast;
mod kind;
mod lexer;
mod node;
mod parser;
mod reparse;
mod source;
mod span;
pub use self::kind::*;
pub use self::lexer::*;
pub use self::node::*;
pub use self::parser::*;
pub use self::source::*;
pub use self::span::*;
|