Add Podlang pretty-printing (#353)
* Add Podlang pretty-printing * Review feedback changes * Formatting * Use Display impl for printing StatementTmplArg
This commit is contained in:
parent
8429cd224d
commit
9f8335756c
5 changed files with 680 additions and 15 deletions
|
|
@ -1,11 +1,13 @@
|
|||
pub mod error;
|
||||
pub mod parser;
|
||||
pub mod pretty_print;
|
||||
pub mod processor;
|
||||
|
||||
use std::sync::Arc;
|
||||
|
||||
pub use error::LangError;
|
||||
pub use parser::{parse_podlang, Pairs, ParseError, Rule};
|
||||
pub use pretty_print::PrettyPrint;
|
||||
pub use processor::process_pest_tree;
|
||||
use processor::PodlangOutput;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue